真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

基于SpringBoot如何實(shí)現(xiàn)定時(shí)發(fā)送郵件

這篇文章主要為大家展示了基于SpringBoot如何實(shí)現(xiàn)定時(shí)發(fā)送郵件,內(nèi)容簡(jiǎn)而易懂,希望大家可以學(xué)習(xí)一下,學(xué)習(xí)完之后肯定會(huì)有收獲的,下面讓小編帶大家一起來(lái)看看吧。

創(chuàng)新互聯(lián)公司是專業(yè)的樂(lè)東黎族網(wǎng)站建設(shè)公司,樂(lè)東黎族接單;提供網(wǎng)站設(shè)計(jì)、網(wǎng)站制作,網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行樂(lè)東黎族網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!

前提:

1.Springboot項(xiàng)目

2.引入maven 依賴

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

以下代碼中涉及到的maven依賴有日志依賴,但是springboot都有集成,不用重新引入依賴

基于SpringBoot如何實(shí)現(xiàn)定時(shí)發(fā)送郵件

Application(程序入口)

package com.springbootemaildemo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
/**
 * 引入了一個(gè)注解@EnableSwagger2來(lái)啟動(dòng)swagger注解。(啟動(dòng)該注解使得用在controller中的swagger注解生效, 覆蓋的范圍由@ComponentScan的配置來(lái)指定,
 * 這里默認(rèn)指定為根路徑”com.springboot”下的所有controller)
 * 也可以單獨(dú)寫衣swaggerConfigura
 */
@EnableScheduling //啟動(dòng)定時(shí)任務(wù)
@EnableSwagger2 //啟動(dòng)swagger注解
@SpringBootApplication
public class MailApplication {
  public static void main(String[] args) {
    SpringApplication.run(MailApplication.class, args);
  }
}

MailJob(定時(shí)任務(wù)類)

package com.springbootemaildemo.job;

import com.springbootemaildemo.send.SendMail;
import com.springbootemaildemo.send.TenSenvenMail;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

import javax.annotation.Resource;

@Component
@EnableScheduling
public class MailJob {
  private static final Logger logger = LoggerFactory.getLogger(MailJob.class);

  @Resource
  SendMail sendMail;

  @Resource
  TenSenvenMail tenSenvenMail;

  //@Scheduled(cron = "0/5 * * * * ?")
  //或直接指定時(shí)間間隔,例如:100秒
  // @Scheduled(fixedRate=100000)
  //早晨7點(diǎn)
  @Scheduled(cron = "0 0 7 * * ?")
  public void sendJob() {
    String bodyTen = "早安哇,太陽(yáng)出來(lái)啦,記得開(kāi)心喲";
    String bodyWen = "記得開(kāi)心喲";
    logger.info("定時(shí)任務(wù)開(kāi)始..........................");
    sendMail.sendWen(bodyWen);
    tenSenvenMail.sendTen(bodyTen);
    logger.info("定時(shí)任務(wù)結(jié)束..........................");
  }
}

@EnableScheduling 這個(gè)注解是 開(kāi)啟定時(shí)任務(wù)。

發(fā)送郵件代碼:

發(fā)送普通的郵件(發(fā)送郵件類):

package com.springbootemaildemo.send;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;

import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import java.util.Date;
import java.util.Properties;


@Component
public class SendMail {
  private static final Logger logger = LoggerFactory.getLogger(SendMail.class);

  public void sendWen(String body) {
    logger.info("開(kāi)始發(fā)送..................");
    String from = "212212@qq.com";
    String to = "5456456@qq.com";
    String subject = "HAPPY";
    String smtpHost = "smtp.qq.com";
    Properties props = new Properties();
    props.setProperty("mail.transport.protocol", "smtp"); // 使用的協(xié)議(JavaMail規(guī)范要求)
    props.setProperty("mail.smtp.host", smtpHost); // 發(fā)件人的郵箱的 SMTP服務(wù)器地址
    props.setProperty("mail.smtp.auth", "true"); // 請(qǐng)求認(rèn)證,參數(shù)名稱與具體實(shí)現(xiàn)有關(guān)

    // 創(chuàng)建Session實(shí)例對(duì)象
    Session session = Session.getDefaultInstance(props);
    // 創(chuàng)建MimeMessage實(shí)例對(duì)象
    MimeMessage message = new MimeMessage(session);
    // 設(shè)置發(fā)件人
    try {
      message.setFrom(new InternetAddress(from));
      // 設(shè)置收件人
      message.setRecipients(Message.RecipientType.TO, InternetAddress.parse(to));
      // 設(shè)置發(fā)送日期
      message.setSentDate(new Date());
      // 設(shè)置郵件主題
      message.setSubject(subject);
      // 設(shè)置純文本內(nèi)容的郵件正文
      message.setText(body);
      // 保存并生成最終的郵件內(nèi)容
      message.saveChanges();
      // 設(shè)置為debug模式, 可以查看詳細(xì)的發(fā)送 log
      session.setDebug(true);
      // 獲取Transport對(duì)象
      Transport transport = session.getTransport("smtp");
      // 第2個(gè)參數(shù)需要填寫的是QQ郵箱的SMTP的授權(quán)碼,什么是授權(quán)碼,它又是如何設(shè)置?
      transport.connect(from, "ipeiquufachheefg");
      // 發(fā)送,message.getAllRecipients() 獲取到的是在創(chuàng)建郵件對(duì)象時(shí)添加的所有收件人, 抄送人, 密送人
      transport.sendMessage(message, message.getAllRecipients());
      logger.info("發(fā)送完成");
      transport.close();
    } catch (MessagingException e) {
      e.printStackTrace();
    }
  }
}

以上就是關(guān)于基于SpringBoot如何實(shí)現(xiàn)定時(shí)發(fā)送郵件的內(nèi)容,如果你們有學(xué)習(xí)到知識(shí)或者技能,可以把它分享出去讓更多的人看到。


新聞標(biāo)題:基于SpringBoot如何實(shí)現(xiàn)定時(shí)發(fā)送郵件
當(dāng)前網(wǎng)址:http://weahome.cn/article/jsgshp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部