91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JavaMail怎么整合Spring實現郵件發送功能

發布時間:2022-08-11 11:22:06 來源:億速云 閱讀:173 作者:iii 欄目:開發技術

這篇“JavaMail怎么整合Spring實現郵件發送功能”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“JavaMail怎么整合Spring實現郵件發送功能”文章吧。

簡介

javaMail與spring整合完成后,可大大加大郵件發送效率。當服務器一啟動,配置文件就已加載。直接保存用戶信息時,郵件可直接發送,大大提高了效率。

1.引入坐標

<!-- Javamail -->
        <dependency>
          <groupId>javax.mail</groupId>
          <artifactId>mail</artifactId>
          <version>1.4.4</version>
        </dependency>
        <dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-context-support</artifactId>
          <version>4.2.4.RELEASE</version>
</dependency>

2.抽取MailUtils工具類

package cn.itcast.jk.utils;
import java.util.Properties;
import javax.mail.Address;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMessage.RecipientType;

public class MailUtils {
    /**
     * 發送郵件
     * @throws Exception 
     * 
     */
    public static void sendMsg(String toAddress,String subject,String content) throws Exception{
        //1.設置郵件的一些信息
        Properties props = new Properties();
        //發送郵件的服務器地址
        props.put("mail.smtp.host", "smtp.163.com");//smtp.qq.com stmp.sina.com
        props.put("mail.smtp.auth", "true");
        //2.創建Session對象
        Session session =Session.getInstance(props);
        //3.創建出MimeMessage,郵件的消息對象
        MimeMessage message = new MimeMessage(session);
        //4.設置發件人
        Address fromAddr = new InternetAddress("發件人郵箱");
        message.setFrom(fromAddr);

        //5.設置收件人
        Address toAddr=new InternetAddress(toAddress);
        message.setRecipient(RecipientType.TO, toAddr);

        //6.設置郵件的主題
        message.setSubject(subject);

        //7.設置郵件的正文
        message.setText(content);
        message.saveChanges();//保存更新

        //8.得到火箭
        Transport transport = session.getTransport("smtp");

        transport.connect("smtp.163.com","發件人郵箱","發件人密碼"); //設置了火箭的發射地址

        transport.sendMessage(message, message.getAllRecipients());//發送具體內容及接收人

        transport.close();
    }
}

3.mailproperties.xml

mail.host=smtp.163.com
mail.username=你的郵箱名——也就是@前面的東西
mail.password=密碼
mail.from=你的郵箱地址

4.創建applicationContext-mail.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"  
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"       
    xmlns:p="http://www.springframework.org/schema/p"  
    xmlns:context="http://www.springframework.org/schema/context"   
    xmlns:tx="http://www.springframework.org/schema/tx"  
    xmlns:aop="http://www.springframework.org/schema/aop"  
    xsi:schemaLocation="http://www.springframework.org/schema/beans    
    http://www.springframework.org/schema/beans/spring-beans.xsd    
    http://www.springframework.org/schema/aop    
    http://www.springframework.org/schema/aop/spring-aop.xsd    
    http://www.springframework.org/schema/tx    
    http://www.springframework.org/schema/tx/spring-tx.xsd    
    http://www.springframework.org/schema/context    
    http://www.springframework.org/schema/context/spring-context.xsd">

    <description>JavaMail的配置文件</description>
    <!-- 加載mail.properties配置文件 -->
    <context:property-placeholder location="classpath:mail.properties"/>


    <!-- 簡單消息對象創建 -->
    <bean id="mailMessage" class="org.springframework.mail.SimpleMailMessage">
         <property name="from" value="${mail.from}"></property>
    </bean>

    <!-- 2.創建發送器 -->    
    <bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
         <property name="host" value="${mail.host}"></property>
         <property name="username" value="${mail.username}"></property>
         <property name="password" value="${mail.password}"></property>
         <property name="defaultEncoding" value="UTF-8"></property>
         <property name="javaMailProperties">
            <props>
                 <prop key="mail.smtp.auth">true</prop>
                 <prop key="mail.debug">true</prop>
                 <prop key="mail.smtp.timeout">0</prop>
            </props>
         </property>
    </bean>
</beans>

5.applicationContext.xml引入applicationContext-mail.xml

<import resource="classpath:spring/applicationContext-mail.xml"/>

6.applicationContext-service.xml中注值

<bean id="userService" class="cn.itcast.jk.service.impl.UserServiceImpl">
        <property name="baseDao" ref="baseDao"></property>
        <property name="mailMessage" ref="mailMessage"></property>
        <property name="mailSender" ref="mailSender"></property>
    </bean>

mailMessage與mailSender注入到UserServiceImpl中

7.UserServiceImpl類中的saveorUpdate方法中加入

//spring整合javaMail需要注入:
    private SimpleMailMessage mailMessage;
    private JavaMailSender mailSender;

    public void setMailMessage(SimpleMailMessage mailMessage) {
        this.mailMessage = mailMessage;
    }

    public void setMailSender(JavaMailSender mailSender) {
        this.mailSender = mailSender;
    }
public void saveOrUpdate(final User entity) {       
        if(UtilFuns.isEmpty(entity.getId())){
            //判斷id是否有值

            //說明id沒有值,說明保存    
            entity.setState(1);  //1代表可用
            String id = UUID.randomUUID().toString();
            entity.setId(id);
            entity.getUserinfo().setId(id);

            //設置初始密碼 需要將默認的密碼加密后保存到數據庫
            entity.setPassword(Encrypt.md5(SysConstant.DEFAULT_PASS, entity.getUserName()));
//final就是延長對象的生命周期,不然entity只能在saveOrUpdate中使用,使用完成后方法彈棧,而run方法內就無法再使用之前定義好的entity。
//使用spring與javaMail實現新員工入職時郵件的發送
//使用線程并try-catch的目的就是如果郵件發送失敗,也不影響信息保存到數據庫。郵件發送成為了一個獨立的過程。
            Thread th = new Thread(new Runnable(){
                public void run(){
                    try {
                        mailMessage.setTo(entity.getUserinfo().getEmail());
                        mailMessage.setSubject("新員工入職信息");
                        mailMessage.setText("歡迎"+entity.getUserinfo().getName()+"加入廊坊思創志遠科技有限公司,您在公司的賬號:"+entity.getUserName()+",密碼:"+SysConstant.DEFAULT_PASS);
                        mailSender.send(mailMessage);
                    } catch (MailException e) {
                        e.printStackTrace();
                    }
                }
            });
            th.start();
        }
        baseDao.saveOrUpdate(entity);
}

以上就是關于“JavaMail怎么整合Spring實現郵件發送功能”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

美姑县| 道真| 富锦市| 开封市| 水富县| 大英县| 波密县| 蓬安县| 柘荣县| 和静县| 株洲市| 安塞县| 涡阳县| 石河子市| 繁昌县| 且末县| 清徐县| 张家界市| 阿鲁科尔沁旗| 龙山县| 瓦房店市| 江北区| 化隆| 云安县| 谢通门县| 永春县| 双柏县| 萨迦县| 沙湾县| 重庆市| 玉田县| 当雄县| 金塔县| 八宿县| 莱西市| 江油市| 常山县| 迁西县| 聂拉木县| 平原县| 钟山县|