아래와 같은 빨간색 요청이 있었다.
원인을 찾아보니...
olOwOlo라는 사람이 "Add csrf token support"라는 제목으로 PR을 날렸다.
https://github.com/springfox/springfox/pull/2434
csrf.js 라는 코드에서 getCsrf라는 함수에서 CSRF 정보를 찾게 되는데 전략은 아래와 같다.
- getCsrfFromMeta
- getCsrfFromEndpoint
- getCsrfFromCookie
Meta에서 가져오기 위해 / 를 요청하고..
EndPoint에서 가져오기 위해 /csrf 를 호출하고 있다.
EndPoint에서 가져오기 위해 /csrf 를 호출하고 있다.
그래서 두 번의 404 에러가 발생하는 것이다.
'Programing > OpenSource' 카테고리의 다른 글
[Test] hamcrest 은 matchers의 애너그램이다. (0) | 2019.01.24 |
---|---|
[OSL] Inkspace에서 사용하는 오픈 소스 소프트웨어 (0) | 2019.01.23 |
[Spring Data Redis] Pipelining 에서 ClassCastException 발생 (0) | 2018.12.07 |
[hikari.pool] 커넥션 누수가 감지되었지만 오탐이다 (0) | 2018.12.04 |
HikariPool - Thread starvation or clock leap detected 메세지 (0) | 2018.11.28 |