Spring+quartz实现定时发送邮件功能实例
程序员文章站
2024-03-04 09:19:41
在做具体的系统管理时,往往会有每隔一段时间发给用户一些邮件的业务,现在参考的网上的大部分代码,写下了我自己的代码。
在applicationcontext.xml的内容如...
在做具体的系统管理时,往往会有每隔一段时间发给用户一些邮件的业务,现在参考的网上的大部分代码,写下了我自己的代码。
在applicationcontext.xml的内容如下:
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:p="http://www.springframework.org/schema/p" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd "> <bean id="testquartz" class="com.zhuyun.net.attachmentemailutil"></bean> <!-- bean触发方法配置 --> <bean name="quartzbean" class="org.springframework.scheduling.quartz.methodinvokingjobdetailfactorybean"> <!-- bean名字 --> <property name="targetobject" ref="testquartz" /><!--目标对象--> <!-- bean方法 --> <property name="targetmethod"><!--目标方法--> <value>sendemail</value> </property> <property name="concurrent"><!--配置为false不允许任务并发执行--> <value>false</value> </property> </bean> <!-- bean触发时间配置,指定具体的时间执行 --> <bean id="quartztrigger" class="org.springframework.scheduling.quartz.crontriggerbean"> <!-- 触发bean配置 --> <property name="jobdetail" ref="quartzbean" /> <!-- 触发时间配置 --> <property name="cronexpression"> <value>0 0 10 1 * ?</value> </property> </bean> <bean class="org.springframework.scheduling.quartz.schedulerfactorybean" lazy-init="default" autowire="default"> <property name="triggers"> <list> <ref local="quartztrigger" /> </list> </property> <property name="autostartup" value="true" /> </bean> </beans>
至于方法如下:
package com.zhuyun.net; import java.io.bufferedwriter; import java.io.file; import java.io.filenotfoundexception; import java.io.fileoutputstream; import java.io.filewriter; import java.io.ioexception; import java.io.objectinputstream; import java.io.objectoutputstream; import java.io.outputstream; import java.io.outputstreamwriter; import java.io.writer; import java.sql.sqlexception; import java.text.simpledateformat; import java.util.arraylist; import java.util.calendar; import java.util.date; import java.util.list; import java.util.properties; import javax.activation.datahandler; import javax.activation.datasource; import javax.activation.filedatasource; import javax.mail.bodypart; import javax.mail.message; import javax.mail.multipart; import javax.mail.session; import javax.mail.transport; import javax.mail.internet.internetaddress; import javax.mail.internet.mimebodypart; import javax.mail.internet.mimemessage; import javax.mail.internet.mimemultipart; public class attachmentemailutil { private string host = ""; // smtp服务器 private string from = ""; // 发件人地址 private string to = ""; // 收件人地址 private string affix = ""; // 附件地址 private string affixname = ""; // 附件名称 private string user = ""; // 用户名 private string pwd = ""; // 密码 private string subject = ""; // 邮件标题 public void setaddress(string from, string to, string subject) { this.from = from; this.to = to; this.subject = subject; } public void setaffix(string affix, string affixname) { this.affix = affix; this.affixname = affixname; } public void send(string host, string user, string pwd) { this.host = host; this.user = user; this.pwd = pwd; properties props = new properties(); // 设置发送邮件的邮件服务器的属性(这里使用网易的smtp服务器) props.put("mail.smtp.host", host); // 需要经过授权,也就是有户名和密码的校验,这样才能通过验证 props.put("mail.smtp.auth", "true"); props.put("mail.smtp.port", 465); props.put("mail.smtp.ssl.enable", true); // 用刚刚设置好的props对象构建一个session session session = session.getdefaultinstance(props); // 有了这句便可以在发送邮件的过程中在console处显示过程信息,供调试使 // 用(你可以在控制台(console)上看到发送邮件的过程) session.setdebug(true); // 用session为参数定义消息对象 mimemessage message = new mimemessage(session); try { // 加载发件人地址 message.setfrom(new internetaddress(from)); // 加载收件人地址 message.addrecipient(message.recipienttype.to, new internetaddress( to)); // 加载标题 message.setsubject(subject); // 向multipart对象中添加邮件的各个部分内容,包括文本内容和附件 multipart multipart = new mimemultipart(); // 设置邮件的文本内容 bodypart contentpart = new mimebodypart(); contentpart.settext("第二种方法···"); multipart.addbodypart(contentpart); // 添加附件 bodypart messagebodypart = new mimebodypart(); datasource source = new filedatasource(affix); // 添加附件的内容 messagebodypart.setdatahandler(new datahandler(source)); // 添加附件的标题 // 这里很重要,通过下面的base64编码的转换可以保证你的中文附件标题名在发送时不会变成乱码 sun.misc.base64encoder enc = new sun.misc.base64encoder(); messagebodypart.setfilename("=?gbk?b?" + enc.encode(affixname.getbytes()) + "?="); multipart.addbodypart(messagebodypart); // 将multipart对象放到message中 message.setcontent(multipart); // 保存邮件 message.savechanges(); // 发送邮件 transport transport = session.gettransport("smtp"); // 连接服务器的邮箱 transport.connect(host, user, pwd); // 把邮件发送出去 transport.sendmessage(message, message.getallrecipients()); transport.close(); } catch (exception e) { e.printstacktrace(); } } public void sendemail() { file file = new file("/root/emailfile/content.csv"); if (!file.exists()) { try { file.createnewfile(); } catch (ioexception e) { // todo auto-generated catch block e.printstacktrace(); } } string pushinfocontent = "成功了"; filewriter writer = null; try { // 打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件 writer = new filewriter(file, true); writer.write(pushinfocontent + "\r\n"); } catch (ioexception e) { e.printstacktrace(); } finally { try { if (writer != null) { writer.close(); } } catch (ioexception e) { e.printstacktrace(); } } attachmentemailutil cn = new attachmentemailutil(); // 设置发件人地址、收件人地址和邮件标题 cn.setaddress("发件人地址", "收件人地址", "一个带附件的javamail邮件(标题)"); // 设置要发送附件的位置和标题 cn.setaffix("附件的位置", "附件的文件名"); // 设置smtp服务器以及邮箱的帐号和密码 cn.send("smtp.qq.com", "帐号", "密码"); if (file.exists()) { file.delete(); } } }
大概就是这样子了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。