본문 바로가기

Spring Boot/오류

[SpringBoot Secyruty] [오류] Consider defining a bean of type 'org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder' in your configuration.

 

***************************
APPLICATION FAILED TO START
***************************

Description:

Parameter 0 of constructor in com.goodbam.jwt.controller.RestApiController required a bean of type 'org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder' that could not be found.


Action:

Consider defining a bean of type 'org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder' in your configuration.

 

 

SecurityConfig에 빈추가

public class SecurityConfig extends WebSecurityConfigurerAdapter{
	
	@Bean
	public BCryptPasswordEncoder passwordEncoder() {
		return new BCryptPasswordEncoder();
	}

}