Springboot 1.5.19 에서 Stringboot 2.1.4로 변경하면서 아래와 같은 에러가 발생하였다.
Consider defining a bean of type 'org.springframework.security.authentication.AuthenticationManager' in your configuration
열심히 구글링 한 결과
WebSecurityConfigurerAdapter클래스에 오버라이드 (override) 할 필요하다
@Override
@Bean
public AuthenticationManager authenticationManagerBean() throws Exception {
return super.authenticationManagerBean();
}
위과 같이 추가 한 이후에 해결되었다.
'개발경험 및 메모 > Spring & Java' 카테고리의 다른 글
SpringBoot2 JSP 실시간 적용방법 (0) | 2020.08.24 |
---|---|
resolved [org.springframework.http.converter.httpmessagenotwritableexception: no converter found for return value of type (0) | 2020.08.20 |
spring.main.allow-bean-definition-overriding=true 에러 (0) | 2020.08.18 |
대용량 엑셀다운로드 SXSSFWorkbook (0) | 2020.06.22 |
Spring RestTemplate 이용한 OAuth Token 발급 (0) | 2020.04.24 |
최근댓글