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

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

SpringBoot2高級應(yīng)用(02):集成JavaMail,實(shí)現(xiàn)異步發(fā)送郵件

本文源碼: GitHub·點(diǎn)這里 || GitEE·點(diǎn)這里

成都創(chuàng)新互聯(lián)公司專注于企業(yè)全網(wǎng)整合營銷推廣、網(wǎng)站重做改版、西區(qū)網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、HTML5、商城網(wǎng)站建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為西區(qū)等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

一、JavaMail的核心API

1、API功能圖解

SpringBoot2 高級應(yīng)用(02):集成 JavaMail ,實(shí)現(xiàn)異步發(fā)送郵件

2、API說明

(1)、Message 類:
javax.mail.Message 類是創(chuàng)建和解析郵件的一個抽象類
子類javax.mail.internet.MimeMessage :表示一份電子郵件。
發(fā)送郵件時,首先創(chuàng)建出封裝了郵件數(shù)據(jù)的 Message 對象, 然后把這個對象傳遞給郵件發(fā)送Transport 類,執(zhí)行發(fā)送。
接收郵件時,把接收到的郵件數(shù)據(jù)封裝在Message 類的實(shí)例中,從這個對象中解析收到的郵件數(shù)據(jù)。

(2)、Transport 類
javax.mail.Transport 類是發(fā)送郵件的核心API 類
創(chuàng)建好 Message 對象后, 只需要使用郵件發(fā)送API 得到 Transport 對象, 然后把 Message 對象傳遞給 Transport 對象, 并調(diào)用它的發(fā)送方法, 就可以把郵件發(fā)送給指定的郵件服務(wù)器

(3)、Store 類
javax.mail.Store 類是接收郵件的核心 API 類
實(shí)例對象代表實(shí)現(xiàn)了某個郵件接收協(xié)議的郵件接收對象,接收郵件時, 只需要得到 Store 對象, 然后調(diào)用 Store 對象的接收方法,就可以從指定的郵件服務(wù)器獲得郵件數(shù)據(jù),并把這些郵件數(shù)據(jù)封裝到表示郵件的 Message 對象中。

(4)、Session 類:
javax.mail.Session 類定義郵件服務(wù)器的主機(jī)名、端口號、協(xié)議等
Session 對象根據(jù)這些信息構(gòu)建用于郵件收發(fā)的 Transport 和 Store 對象, 以及為客戶端創(chuàng)建 Message 對象時提供信息支持。

二、郵件服務(wù)器配置

以 smtp 為例

1、smtp.mxhichina.com  
阿里云企業(yè)郵箱配置(賬號+密碼)
2、smtp.aliyun.com
阿里云個人郵箱配置(賬號+密碼)
3、smtp.163.com
網(wǎng)易郵箱配置(賬號+授權(quán)碼)

三、公共代碼塊

1、郵件通用配置

package com.email.send.param;
/**
 * 郵箱發(fā)送參數(shù)配置
 */
public class EmailParam {
    /**
     * 郵箱服務(wù)器地址
     */
    // public static final String emailHost = "smtp.mxhichina.com" ; 阿里云企業(yè)郵箱配置(賬號+密碼)
    // public static final String emailHost = "smtp.aliyun.com" ; 阿里云個人郵箱配置(賬號+密碼)
    public static final String emailHost = "smtp.163.com" ; // 網(wǎng)易郵箱配置(賬號+授權(quán)碼)
    /**
     * 郵箱協(xié)議
     */
    public static final String emailProtocol = "smtp" ;
    /**
     * 郵箱發(fā)件人
     */
    public static final String emailSender = "xxxxxx@163.com" ;
    /**
     * 郵箱授權(quán)碼
     */
    public static final String password = "authCode";
    /**
     * 郵箱授權(quán)
     */
    public static final String emailAuth = "true" ;
    /**
     * 郵箱昵稱
     */
    public static final String emailNick = "知了一笑" ;
}

2、常用常量

package com.email.send.param;
/**
 * 郵件發(fā)送類型
 */
public enum EmailType {
    EMAIL_TEXT_KEY("email_text_key", "文本郵件"),
    EMAIL_IMAGE_KEY("email_image_key", "圖片郵件"),
    EMAIL_FILE_KEY("email_file_key", "文件郵件");
    private String code;
    private String value;
    EmailType(String code, String value) {
        this.code = code;
        this.value = value;
    }
    public static String getByCode(String code) {
        EmailType[] values = EmailType.values();
        for (EmailType emailType: values) {
            if (emailType.code.equalsIgnoreCase(code)) {
                return emailType.value;
            }
        }
        return null;
    }
    // 省略 get set
}

四、郵件發(fā)送封裝

1、純文本郵件發(fā)送

(1)、代碼封裝

/**
 * 郵箱發(fā)送模式01:純文本格式
 */
public static void sendEmail01(String receiver, String title, String body) throws Exception {
    Properties prop = new Properties();
    prop.setProperty("mail.host", EmailParam.emailHost);
    prop.setProperty("mail.transport.protocol", EmailParam.emailProtocol);
    prop.setProperty("mail.smtp.auth", EmailParam.emailAuth);
    //使用JavaMail發(fā)送郵件的5個步驟
    //1、創(chuàng)建session
    Session session = Session.getInstance(prop);
    //開啟Session的debug模式,這樣就可以查看到程序發(fā)送Email的運(yùn)行狀態(tài)
    session.setDebug(true);
    //2、通過session得到transport對象
    Transport ts = session.getTransport();
    //3、使用郵箱的用戶名和密碼連上郵件服務(wù)器,發(fā)送郵件時,發(fā)件人需要提交郵箱的用戶名和密碼給smtp服務(wù)器,用戶名和密碼都通過驗證之后才能夠正常發(fā)送郵件給收件人。
    ts.connect(EmailParam.emailHost, EmailParam.emailSender, EmailParam.password);
    //4、創(chuàng)建郵件
    // Message message = createEmail01(session,receiver,title,body);
    Message message = createEmail01(session, receiver, title, body);
    //5、發(fā)送郵件
    ts.sendMessage(message, message.getAllRecipients());
    ts.close();
}
/**
 * 創(chuàng)建文本郵件
 */
private static MimeMessage createEmail01(Session session, String receiver, String title, String body)
throws Exception {
    //創(chuàng)建郵件對象
    MimeMessage message = new MimeMessage(session);
    //指明郵件的發(fā)件人
    String nick = javax.mail.internet.MimeUtility.encodeText(EmailParam.emailNick);
    message.setFrom(new InternetAddress(nick + "<" + EmailParam.emailSender + ">"));
    //指明郵件的收件人
    message.setRecipient(Message.RecipientType.TO, new InternetAddress(receiver));
    //郵件的標(biāo)題
    message.setSubject(title);
    //郵件的文本內(nèi)容
    message.setContent(body, "text/html;charset=UTF-8");
    //返回創(chuàng)建好的郵件對象
    return message;
}

(2)、執(zhí)行效果圖

SpringBoot2 高級應(yīng)用(02):集成 JavaMail ,實(shí)現(xiàn)異步發(fā)送郵件

2、文本+圖片+附件郵件

(1)、代碼封裝

/**
 * 郵箱發(fā)送模式02:復(fù)雜格式
 */
public static void sendEmail02(String receiver, String title, String body) throws Exception {
    Properties prop = new Properties();
    prop.setProperty("mail.host", EmailParam.emailHost);
    prop.setProperty("mail.transport.protocol", EmailParam.emailProtocol);
    prop.setProperty("mail.smtp.auth", EmailParam.emailAuth);
    //使用JavaMail發(fā)送郵件的5個步驟
    //1、創(chuàng)建session
    Session session = Session.getInstance(prop);
    //開啟Session的debug模式,這樣就可以查看到程序發(fā)送Email的運(yùn)行狀態(tài)
    session.setDebug(true);
    //2、通過session得到transport對象
    Transport ts = session.getTransport();
    //3、使用郵箱的用戶名和密碼連上郵件服務(wù)器,發(fā)送郵件時,發(fā)件人需要提交郵箱的用戶名和密碼給smtp服務(wù)器,用戶名和密碼都通過驗證之后才能夠正常發(fā)送郵件給收件人。
    ts.connect(EmailParam.emailHost, EmailParam.emailSender, EmailParam.password);
    //4、創(chuàng)建郵件
    // Message message = createEmail01(session,receiver,title,body);
    Message message = createEmail02(session, receiver, title, body);
    //5、發(fā)送郵件
    ts.sendMessage(message, message.getAllRecipients());
    ts.close();
}
private static MimeMessage createEmail02(Session session, String receiver, String title, String body)
throws Exception {
    //創(chuàng)建郵件對象
    MimeMessage message = new MimeMessage(session);
    //指明郵件的發(fā)件人
    String nick = javax.mail.internet.MimeUtility.encodeText(EmailParam.emailNick);
    message.setFrom(new InternetAddress(nick + "<" + EmailParam.emailSender + ">"));
    //指明郵件的收件人
    message.setRecipient(Message.RecipientType.TO, new InternetAddress(receiver));
    //郵件的標(biāo)題
    message.setSubject(title);
    //文本內(nèi)容
    MimeBodyPart text = new MimeBodyPart();
    text.setContent(body, "text/html;charset=UTF-8");
    //圖片內(nèi)容
    MimeBodyPart image = new MimeBodyPart();
    image.setDataHandler(new DataHandler(new FileDataSource("ware-email-send/src/gzh.jpg")));
    image.setContentID("gzh.jpg");
    //附件內(nèi)容
    MimeBodyPart attach = new MimeBodyPart();
    DataHandler file = new DataHandler(new FileDataSource("ware-email-send/src/gzh.zip"));
    attach.setDataHandler(file);
    attach.setFileName(file.getName());
    //關(guān)系:正文和圖片
    MimeMultipart multipart1 = new MimeMultipart();
    multipart1.addBodyPart(text);
    multipart1.addBodyPart(image);
    multipart1.setSubType("related");
    //關(guān)系:正文和附件
    MimeMultipart multipart2 = new MimeMultipart();
    multipart2.addBodyPart(attach);
    // 全文內(nèi)容
    MimeBodyPart content = new MimeBodyPart();
    content.setContent(multipart1);
    multipart2.addBodyPart(content);
    multipart2.setSubType("mixed");
    // 封裝 MimeMessage 對象
    message.setContent(multipart2);
    message.saveChanges();
    // 本地查看文件格式
    message.writeTo(new FileOutputStream("F:\\MixedMail.eml"));
    //返回創(chuàng)建好的郵件對象
    return message;
}

(2)、執(zhí)行效果

SpringBoot2 高級應(yīng)用(02):集成 JavaMail ,實(shí)現(xiàn)異步發(fā)送郵件

3、實(shí)現(xiàn)異步發(fā)送

(1)、配置異步執(zhí)行線程

package com.email.send.util;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
import java.util.concurrent.Executor;
import java.util.concurrent.ThreadPoolExecutor;
/**
 * 定義異步任務(wù)執(zhí)行線程池
 */
@Configuration
public class TaskPoolConfig {
    @Bean("taskExecutor")
    public Executor taskExecutor () {
        ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
        // 核心線程數(shù)10:線程池創(chuàng)建時候初始化的線程數(shù)
        executor.setCorePoolSize(10);
        // 最大線程數(shù)20:線程池最大的線程數(shù),只有在緩沖隊列滿了之后才會申請超過核心線程數(shù)的線程
        executor.setMaxPoolSize(15);
        // 緩沖隊列200:用來緩沖執(zhí)行任務(wù)的隊列
        executor.setQueueCapacity(200);
        // 允許線程的空閑時間60秒:當(dāng)超過了核心線程數(shù)之外的線程在空閑時間到達(dá)之后會被銷毀
        executor.setKeepAliveSeconds(60);
        // 線程池名的前綴:設(shè)置好了之后可以方便定位處理任務(wù)所在的線程池
        executor.setThreadNamePrefix("taskExecutor-");
        /*
        線程池對拒絕任務(wù)的處理策略:這里采用了CallerRunsPolicy策略,
        當(dāng)線程池沒有處理能力的時候,該策略會直接在 execute 方法的調(diào)用線程中運(yùn)行被拒絕的任務(wù);
        如果執(zhí)行程序已關(guān)閉,則會丟棄該任務(wù)
         */
        executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
        // 設(shè)置線程池關(guān)閉的時候等待所有任務(wù)都完成再繼續(xù)銷毀其他的Bean
        executor.setWaitForTasksToCompleteOnShutdown(true);
        // 設(shè)置線程池中任務(wù)的等待時間,如果超過這個時候還沒有銷毀就強(qiáng)制銷毀,以確保應(yīng)用最后能夠被關(guān)閉,而不是阻塞住。
        executor.setAwaitTerminationSeconds(600);
        return executor;
    }
}

(2)、業(yè)務(wù)方法使用
注意兩個注解
@Component
@Async(“taskExecutor”)

@Component
@Service
public class EmailServiceImpl implements EmailService {
    @Async("taskExecutor")
    @Override
    public void sendEmail(String emailKey, SendEmailModel model) {
        try{
            // 異步執(zhí)行
            Thread.sleep(1000);
            String textBody = EmailUtil.convertTextModel(BodyType.getByCode(emailKey),"知了","一笑");
            // 發(fā)送文本郵件
            EmailUtil.sendEmail01(model.getReceiver(), EmailType.getByCode(emailKey),textBody);
            // 發(fā)送復(fù)雜郵件:文本+圖片+附件
            String body = "自定義圖片:,網(wǎng)絡(luò)圖片:";
            // EmailUtil.sendEmail02(model.getReceiver(),"文本+圖片+附件",body);
        } catch (Exception e){
            e.printStackTrace();
        }
    }
}

(3)、啟動類注解
@EnableAsync

@EnableAsync
@SpringBootApplication
public class EmailApplication {
    public static void main(String[] args) {
        SpringApplication.run(EmailApplication.class,args) ;
    }
}

五、源代碼地址

GitHub·地址
https://github.com/cicadasmile/middle-ware-parent
GitEE·地址
https://gitee.com/cicadasmile/middle-ware-parent

新聞名稱:SpringBoot2高級應(yīng)用(02):集成JavaMail,實(shí)現(xiàn)異步發(fā)送郵件
網(wǎng)站URL:http://weahome.cn/article/pjhscg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部