Could not autowire org.springframework.mail.javamail.JavaMailSender

前端 未结 8 760
时光取名叫无心
时光取名叫无心 2021-02-11 22:18

I got the following problem when trying to run my application. Have debugged everything and still nothing.

The IDE is finding the bean without any issue so I\'m very con

8条回答
  •  执念已碎
    2021-02-11 23:17

    Configuring in application.properties for spring.mail related properties are good enough to do Autowire of JavaMailSender. In our case, someone also had Bean declaration and hence this was taking precedence over application.properties. Hence, Autowired was not showing. I hope this helps one.

提交回复
热议问题