httpie '<' The operator is reserved for future use.
인텔리제이에서 터미널에서 httpie 사용중에 특정 json데이터 입력시 발생 에러였는데요
ex)
http PATCH localhost:8080/shops/1/items < items.json
'<' 연산자는 나중에 사용하도록 예약되어 있습니다. 라는 에러 발생
https://stackoverflow.com/questions/2148746/the-operator-is-reserved-for-future-use
The '<' operator is reserved for future use
I am using PowerShell and am trying to run the following command: .\test_cfdp.exe < test.full | tee test.log test.full is a script that mimics command line inputs to test_cfdp.exe. However, I...
stackoverflow.com
해결법은
cmd /c 'http PATCH localhost:8080/shops/1/items < items.json'
파워쉘로 연결된 상태여서 그런것 같습니다.
'웹 > Spring' 카테고리의 다른 글
WebSecurityConfigurerAdapter 사용 불가 (0) | 2022.09.01 |
---|---|
junit5 >> MockitoAnnotations.initMocks 사용법 (0) | 2022.08.17 |
@Test(expected=class) junit5에서 사용법 (0) | 2022.08.10 |
webPack vue spring으로 빌드하는 방법 (0) | 2022.07.26 |
@Before 실행 안될때 (0) | 2022.07.12 |