728x90
Description:
Parameter 1 of constructor in com.example.indivisual.user.service.UserServiceImpl required a bean of type 'org.springframework.security.crypto.password.PasswordEncoder' that could not be found.
Action:
Consider defining a bean of type 'org.springframework.security.crypto.password.PasswordEncoder' in your configuration.
password Encoder 환경설정을 안해줘서 나는 문제이다.
@Bean
public PasswordEncoder passwordEncoder() {
return new BCryptPasswordEncoder();
}
추가해주었다.
빈 주입해주는거 까먹지 말자!!
빈 주입 방법 리마인드 하자
아래 2가지 방법이 있다는것을 상기 시키자!!
@configuration + @bean
@componentscan + @component
728x90
'개인프로젝트' 카테고리의 다른 글
개인프로젝트 10일차 (0) | 2023.03.24 |
---|---|
개인프로젝트 9일차 (0) | 2023.03.24 |
개인프로젝트 7일차 (0) | 2023.03.22 |
개인프로젝트 6일차 (0) | 2023.03.21 |
웹플럭스란 (0) | 2023.03.21 |