SpringBoot整合qq邮件发送验证码(解决空指针问题)

废话不多说直接贴代码:

1.依赖

    
        
            org.springframework.boot
            spring-boot-starter-mail
        

2.yml配置,可能格式有点乱

spring:
  mail:
  host: smtp.qq.com
    protocol: smtp
    username: 264****[email protected]
    password: rykwlagummhvdjcf
    default-encoding: UTF-8
    port: 587
    properties:
      mail:
        smtp:
          socketFactoryClass: javax.net.ssl.SSLSocketFactory
          debug: true

3.代码

@Slf4j
@Configuration
public class SMSUtils {

	//读取yml文件中username的值并赋值给form
	@Value("${spring.mail.username}")
	private String from;


	@Resource
	private  JavaMailSender mailSender;

	public  void creatMimeMessage(String email,String code) {
		//创建邮件  SimpleMailMessage是创建文件 包括内容,邮件消息,发件人,收件人……
		SimpleMailMessage message = new SimpleMailMessage();
//你的邮箱
		message.setFrom(from);
//发送到的邮箱
		message.setTo(email);
		message.setSubject("瑞吉外卖注册");
		//把验证码存入resdis中,设置过期时间为三分钟,不需要可忽略
//		redisTemplate.opsForValue().set(mailTo,fourBitRandom,3, TimeUnit.MINUTES);
		//setText 就是设置邮件发送的内容,根据自己的需要自行编写即可。
		message.setText("【瑞吉外卖】"+ code +"(瑞吉外卖注册验证码),如非本人操作,请忽略!");

		//发送邮件
		mailSender.send(message);
		log.info("邮件已经发送");
	}
}

到这代码开发基本结束:

但是可能mailSender会出现空指针错误,找了网上的资料发现了问题所在,

因为我们将这个类是作为一个工具类,但是我们有将mailSender交给了Spring进行管理,

所以对这个类不能new  也需要交给Spring进行管理,所以得注入的方式调用方法

错误示范:

SMSUtils smsUtils = new SMSUtils();
 smsUtils.creatMimeMessage(email,code);

正确应该是:

 
  
smsUtils.creatMimeMessage(email,code);

前提是需要把整个类交给Spring进行管理,所有我在类名上加了@Configuration

到这个问题解决!!!

你可能感兴趣的:(Spring,spring,boot,java,mybatis)