21.02.11 17:39 작성
·
1.3K
0
안녕하세요. 좋은강의 잘 듣고 있습니다.
강사님 코드를 라이브코딩으로 따라치며 강의를 듣는 중인데요
spring-jpa-웹앱 강의 <회원가입 폼 및 서브밋 처리> 부분에서 저는 이런 오류가 뜨네요.
Description:
Parameter 2 of constructor in com.stdmark.stdmakr.account.AccountController required a bean of type 'org.springframework.mail.javamail.JavaMailSender' that could not be found.
Action:
Consider defining a bean of type 'org.springframework.mail.javamail.JavaMailSender' in your configuration.
스프링 부트에서는 javaMailSender가 자동으로 빈으로 등록되는 것으로 알고있는데 이와 같은 오류가 뜨는 이유가 뭔지요?
그리고 이를 해결하고 정상적으로 앱을 기동하려면 config 파일 하나 만들어서 빈과 설정정보를 입력해야할까요?
답변 미리 감사드립니다.
답변 4
0
0
0
2021. 02. 12. 09:09
ConsoleMailSender 에서
@Profile("local")
@Component
@Slf4j
로 줬고
appliecation.yml에서도
spring:
profiles:
active: local
준 상태입니다. 더 건드려야할 게 있는지요?
0