目的:解决注入JavaMailSender  为 null 的问题。

在使用springboot发送邮件的时候注入上面这类但是结果为 null。主要是因为少了一个依赖

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context-support</artifactId>
            <version>4.3.7.RELEASE</version>
        </dependency>

 

还有一个原因,如果你是在别的方法里面调用这个方法,这个注入也会出现 null 情况