반응형
뒤로가기 버튼 클릭 시, 양식을 다시 제출하시겠습니까?
오류 발생
HttpSecurity의 http.headers().cacheControl().disable() 넣으면 해결!
@Throws(Exception::class)
override fun configure(http: HttpSecurity) {
http.headers().cacheControl().disable() // ERR_CACHE_MISS 해결
http.csrf().disable()
}
전체 소스
import org.springframework.context.annotation.Configuration
import java.lang.Exception
import org.springframework.security.config.annotation.web.builders.HttpSecurity
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter
@Configuration
@EnableWebSecurity
class SecurityConfiguration : WebSecurityConfigurerAdapter() {
@Throws(Exception::class)
override fun configure(http: HttpSecurity) {
http.headers().cacheControl().disable() // ERR_CACHE_MISS 해결
http.csrf().disable()
}
}
반응형
'skill > HTML.Javscript.CSS' 카테고리의 다른 글
[javascript] for 안에 ajax 호출 시, 순차 진행 방법 (0) | 2024.05.13 |
---|---|
react nginx 404 오류 설정 (0) | 2023.03.16 |
[css] @media print 머릿글 바닥글 삭제 및 다음 페이지 여백 주기 (0) | 2021.12.09 |
[script] modal 열기, 닫기, 닫기 이벤트처리 및 해제 (0) | 2021.10.19 |
toast-chart column data 배열 받기 및 처리 (0) | 2021.07.26 |