Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- django The requested operation has failed!
- APPEND_SLASH = FALSE
- Problems occurred while performing provisioning operation
- windows 원격 연결 설정
- 2961 도영이가 만든 맛있는 음식
- django 프로젝트 시작
- 1188 음식 평론가
- The requested operation has failed!
- 2661 java
- 14711 java
- 1188 java
- django settings.py
- django 웹 페이지
- java di
- 14711 타일 뒤집기
- apache pythonpath
- 원격 연결 포트 포워딩
- django
- 2961 java
- 18233 비트마스킹
- django apache deploy error
- 2643 java
- django windows 배포 에러
- 2661 좋은 수열
- windows apache wsgi 에러
- 2643 색종이 올려 놓기
- 공유기 원격 설정
- django httpd error
- 18233 러버덕
- 18233 java
Archives
라이브러리는 도서관 아닌가요
spring security 405 에러 Request methed 'POST' not supported 본문
Spring/Spring Security
spring security 405 에러 Request methed 'POST' not supported
veryhi 2022. 1. 8. 03:26
security 개발을 하다 보면 만날 수 있는 에러,
Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported]
간단한 해결 책을 알아보도록 하자.
1. POST 요청을 날릴 때 필요한 csrf token 값을 붙이지 않았다.
→ jsp의 경우,
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
를 <form> 태그 안에 추가한다.
→ thymeleaf의 경우,
<input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}" />
를 <form> 태그 안에 추가한다.
2. <form> 태그 안의 action 값을 지정해주지 않았다.
logout을 예로 들면,
<form method="post" action="/member/logout">
. . .
</form>
3. csrf 토큰 값을 붙이지 않고, 단순히 로그아웃 진행
SecurityConfig.java의 configure 메서드 안의 http 객체에 다음과 같은 설정을 추가한다.
.and()
.csrf()
.ignoringAntMatchers("/member/logout")
'Spring > Spring Security' 카테고리의 다른 글
AuthenticationProvider 구현 (0) | 2021.12.30 |
---|---|
spring security jpa oracle dialect 18c 12c 연결 (0) | 2021.12.27 |
Spring Boot에서 spring security의 설정 파일 생성 (0) | 2021.12.13 |
Spring Boot Gradle을 통해 spring security dependency 추가 (0) | 2021.12.13 |
Comments