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();
}
			

 

위과 같이 추가 한 이후에 해결되었다.

 

참고정보 : https://stackoverflow.com/questions/52243774/consider-defining-a-bean-of-type-org-springframework-security-authentication-au

 

 


 

  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기