ABAP DUMP ERROR 24시

JavaMailSender 오류 -JavaMailSender' in your configuration. 본문

[WEB]오류들/inteilij-git오류

JavaMailSender 오류 -JavaMailSender' in your configuration.

이운형 2022. 1. 16. 21:28
반응형

정리


application.preperties에  

spring.profiles.active=local

를 추가한다.

 

만약 

JavaMailSender의

@Profile("local")

로 설정하였으면 local 로 설정한다.

 

 

 

살펴보기


Parameter 1 of constructor in com.mywebpj.account.AccountService required a bean of type 'org.springframework.mail.javamail.JavaMailSender' that could not be found.

 

 

JavaMailSender의 @Profile 설정을 확인후  application.properties에 다음을 추가한다.

 

spring.profiles.active = local

 

 

반응형
Comments