
위와 같이 코딩을 하니,
Field bCryptPasswordEncoder in LSE.HealthPower.service.UserService required a bean of type 'org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder' that could not be found.
라는 에러가 뜸.
=> passwordEncoder 가 빈으로 등록되지 않아서 생기는 문제
(BCryptPasswordEncoder를 Super Class로 한 Class가 없어서)

아래와 같이 코드를 수정하니 정상적으로 작동함.