- 浏览: 1053127 次
- 性别:
- 来自: 广州
文章分类
- 全部博客 (279)
- Apache net (10)
- JBoss Rules (3)
- Seam ACL (1)
- Seam (14)
- Seam JPA高级权限验证 (8)
- 待解决的问题.... (1)
- JAVA (43)
- Dwr (4)
- Ajax4JSF (1)
- JavaScript (27)
- 生活小常识 (17)
- Richfaces (3)
- seam自己经历 (14)
- JDBC (1)
- mysql (6)
- WebService (10)
- Java Web (4)
- Hibernate (13)
- J2EE框架整合 (3)
- Spring (9)
- BEA Weblogic (1)
- XML (1)
- log4j (6)
- CSS (2)
- javaIO文件的读写 (5)
- SVN服务器的安装 (5)
- powerDesigner (2)
- SQL常用语句 (3)
- wicket初学 (5)
- eclipse (7)
- 正则表达式 (1)
- ExtJS (6)
- maven(m2eclipse) (1)
- struts2.0 (9)
- JPA (6)
- struts2.0整合spring2.5 (9)
- linux (6)
- Oracle (5)
- Servlet (3)
- MyEclipseGen (0)
最新评论
-
qq_31247573:
JAVA 获取http返回XML的数据 -
jasmine_20100810:
...
linux下tomcat服务的启动、关闭与错误跟踪 -
weiaiFang0624:
视频下载地址:http://download.csdn.net ...
there is no action mapped for namespace / and action name解决办法 -
p476462534:
JS控制表单form的提交 -
dandongsoft:
aaaaaaaaaaaaaaa
httpClient,JAVA访问http request response
本文主要介绍如何使用简单的Spring邮件抽象层来实现邮件发送功能,对于JavaMail中的API并不做介绍。通过对比JavaMail的 API和Spring的邮件抽象层,我觉得,Spring的邮件抽象层优点就是简化了代码量,并能充分利用IOC功能;缺点就是要使用部分Spring API,使程序与第三方框架耦合。关于这方面的内容,可以参考Spring的参考手册。
闲言少叙,现在就说说Spring邮件抽象层。这里将要用的接口和类有:
1 ) MailSender ,它是发送邮件的主要接口,代码如下:
- public interface MailSender { /*** Send the given simple mail message.
- * @param simpleMessage the message to send
- * @throws org.springframework.mail.MailParseException
- * in case of failure when parsing the message
- * @throws org.springframework.mail.MailAuthenticationException
- * in case of authentication failure
- * @throws org.springframework.mail.MailSendException
- * in case of failure when sending the message
- */
- void send(SimpleMailMessage simpleMessage) throws MailException;
- /**
- * Send the given array of simple mail messages in batch.
- * @param simpleMessages the messages to send
- * @throws org.springframework.mail.MailParseException
- * in case of failure when parsing a message
- * @throws org.springframework.mail.MailAuthenticationException
- * in case of authentication failure
- * @throws org.springframework.mail.MailSendException
- * in case of failure when sending a message
- */
- void send(SimpleMailMessage[] simpleMessages) throws MailException;
- }
public interface MailSender { /*** Send the given simple mail message. * @param simpleMessage the message to send * @throws org.springframework.mail.MailParseException * in case of failure when parsing the message * @throws org.springframework.mail.MailAuthenticationException * in case of authentication failure * @throws org.springframework.mail.MailSendException * in case of failure when sending the message */ void send(SimpleMailMessage simpleMessage) throws MailException; /** * Send the given array of simple mail messages in batch. * @param simpleMessages the messages to send * @throws org.springframework.mail.MailParseException * in case of failure when parsing a message * @throws org.springframework.mail.MailAuthenticationException * in case of authentication failure * @throws org.springframework.mail.MailSendException * in case of failure when sending a message */ void send(SimpleMailMessage[] simpleMessages) throws MailException; }
2 )一个简单邮件信息的实现类 SimpleMailMessage 。
3 ) JavaMailSender 接口,提供使用 JavaMail 中 MimeMessage ,代码如下:
- public interface MailSender { /*** Send the given simple mail message.
- * @param simpleMessage the message to send
- * @throws org.springframework.mail.MailParseException
- * in case of failure when parsing the message
- * @throws org.springframework.mail.MailAuthenticationException
- * in case of authentication failure
- * @throws org.springframework.mail.MailSendException
- * in case of failure when sending the message
- */
- void send(SimpleMailMessage simpleMessage) throws MailException;
- /**
- * Send the given array of simple mail messages in batch.
- * @param simpleMessages the messages to send
- * @throws org.springframework.mail.MailParseException
- * in case of failure when parsing a message
- * @throws org.springframework.mail.MailAuthenticationException
- * in case of authentication failure
- * @throws org.springframework.mail.MailSendException
- * in case of failure when sending a message
- */
- void send(SimpleMailMessage[] simpleMessages) throws MailException;
- }
public interface MailSender { /*** Send the given simple mail message. * @param simpleMessage the message to send * @throws org.springframework.mail.MailParseException * in case of failure when parsing the message * @throws org.springframework.mail.MailAuthenticationException * in case of authentication failure * @throws org.springframework.mail.MailSendException * in case of failure when sending the message */ void send(SimpleMailMessage simpleMessage) throws MailException; /** * Send the given array of simple mail messages in batch. * @param simpleMessages the messages to send * @throws org.springframework.mail.MailParseException * in case of failure when parsing a message * @throws org.springframework.mail.MailAuthenticationException * in case of authentication failure * @throws org.springframework.mail.MailSendException * in case of failure when sending a message */ void send(SimpleMailMessage[] simpleMessages) throws MailException; }
使用 JavaMail ,需要依赖 mail.jar 和 activation.jar 两个包。利用 Spring 的 IOC 优势,可以通过配置文件来配置邮件发送信息。对于 MailSender , Spring 提供了实现类 JavaMailSenderImpl ,可以如下配置 MailSender 信息。
- < bean id = "mailSender" class = "org.springframework.mail.javamail.JavaMailSenderImpl">
- < property name = "host" value = "smtp.126.com">
- < property name = "javaMailProperties" >
- < props >
- < prop key = "mail.smtp.auth" > true
- < prop key = "mail.smtp.timeout" > 20000
- < property name = "username" value = "kafka0102">
- < property name = "password" value = "****">
< bean id = "mailSender" class = "org.springframework.mail.javamail.JavaMailSenderImpl"> < property name = "host" value = "smtp.126.com"> < property name = "javaMailProperties" > < props > < prop key = "mail.smtp.auth" > true < prop key = "mail.smtp.timeout" > 20000 < property name = "username" value = "kafka0102"> < property name = "password" value = "****">
可以想到,如果是在 Service 中调用 mailSender ,可以通过 IOC 将 mailSender 注入到 Service 中。这里给出一个简单的使用演示:
- BeanFactory bf = new ClassPathXmlApplicationContext( "service-applicationContext.xml" );
- MailSender ms = (MailSender)bf.getBean( "mailSender" );
- SimpleMailMessage smm = new SimpleMailMessage();
- smm.setTo( "kafka0102@126.com" );
- smm.setFrom( "kafka0102@126.com" );
- smm.setSubject( "hello" );
- smm.setText( "I am you" );
- ms.send(smm);
BeanFactory bf = new ClassPathXmlApplicationContext( "service-applicationContext.xml" ); MailSender ms = (MailSender)bf.getBean( "mailSender" ); SimpleMailMessage smm = new SimpleMailMessage(); smm.setTo( "kafka0102@126.com" ); smm.setFrom( "kafka0102@126.com" ); smm.setSubject( "hello" ); smm.setText( "I am you" ); ms.send(smm);
其中, SimpleMailMessage 也可以通过配置文件配置使用到的属性。 SimpleMailMessage 不能发送带有附件的邮件,这时就需要 JavaMailSender (它的实现类也是 JavaMailSenderImpl ), MimeMessagePreparator 的实现类和部分 JavaMail API 。 mailSender 的配置不变,添加一个实现 MimeMessagePreparator 的类 OneMimeMessagePreparator ,代码如下。
- import java.util.Date; import javax.activation.DataHandler;
- import javax.activation.FileDataSource;
- import javax.mail.Message;
- import javax.mail.Multipart;
- import javax.mail.internet.InternetAddress;
- import javax.mail.internet.MimeBodyPart;
- import javax.mail.internet.MimeMessage;
- import javax.mail.internet.MimeMultipart;
- import org.springframework.mail.javamail.MimeMessagePreparator;
- public class OneMimeMessagePreparator implements MimeMessagePreparator{
- public void prepare(MimeMessage mm) throws Exception {
- mm.setRecipient(Message.RecipientType. TO , new InternetAddress( "kafka0102@126.com" ));
- mm.setFrom( new InternetAddress( "kafka0102@126.com" ));
- mm.setSubject( "I am you" );
- Multipart mp = new MimeMultipart();
- MimeBodyPart mbp = new MimeBodyPart();
- mbp.setText( "hello kafka0102" );
- mp.addBodyPart(mbp);
- String[] files = new String[]{
- "/home/kafka0102/Document/ 常用基础算法 .txt" ,
- "/home/kafka0102/Document/21164.html" };
- for (String f : files){
- MimeBodyPart mbpFile = new MimeBodyPart();
- FileDataSource fds = new FileDataSource(f);
- mbpFile.setDataHandler( new DataHandler(fds));
- mbpFile.setFileName(fds.getName());
- mp.addBodyPart(mbpFile);
- }
- mm.setContent(mp);
- mm.setSentDate( new Date());
- }
- }
import java.util.Date; import javax.activation.DataHandler; import javax.activation.FileDataSource; import javax.mail.Message; import javax.mail.Multipart; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeBodyPart; import javax.mail.internet.MimeMessage; import javax.mail.internet.MimeMultipart; import org.springframework.mail.javamail.MimeMessagePreparator; public class OneMimeMessagePreparator implements MimeMessagePreparator{ public void prepare(MimeMessage mm) throws Exception { mm.setRecipient(Message.RecipientType. TO , new InternetAddress( "kafka0102@126.com" )); mm.setFrom( new InternetAddress( "kafka0102@126.com" )); mm.setSubject( "I am you" ); Multipart mp = new MimeMultipart(); MimeBodyPart mbp = new MimeBodyPart(); mbp.setText( "hello kafka0102" ); mp.addBodyPart(mbp); String[] files = new String[]{ "/home/kafka0102/Document/ 常用基础算法 .txt" , "/home/kafka0102/Document/21164.html" }; for (String f : files){ MimeBodyPart mbpFile = new MimeBodyPart(); FileDataSource fds = new FileDataSource(f); mbpFile.setDataHandler( new DataHandler(fds)); mbpFile.setFileName(fds.getName()); mp.addBodyPart(mbpFile); } mm.setContent(mp); mm.setSentDate( new Date()); } }
OneMimeMessagePreparator 的功能就是配置 MimeMessage ,其中添加了两个附件。下面就是简单的使用方法。
- BeanFactory bf = new ClassPathXmlApplicationContext("service-applicationContext.xml");
- JavaMailSender ms = (JavaMailSender)bf.getBean("mailSender");
- ms.send(new OneMimeMessagePreparator());
BeanFactory bf = new ClassPathXmlApplicationContext("service-applicationContext.xml"); JavaMailSender ms = (JavaMailSender)bf.getBean("mailSender"); ms.send(new OneMimeMessagePreparator());
发表评论
-
看看Spring的contextLoader都做了什么
2010-06-21 22:01 10632public class ContextLoader { ... -
寻找spring框架的启动入口 ContextLoaderListener
2010-06-21 21:58 12363spring在web下的入口在配置文件web.xml的监听器中 ... -
User Role userRole
2010-02-23 11:38 1785条件说明:在用户注册时候,选择role,然后再插入到数据库表中 ... -
spring的applicationContext.xml中使用属性文件*.properties
2009-08-21 15:46 1832我们可以生成如下的属性文件(/WEB-INF/jdbc.pro ... -
spring和quartz进行定时邮件发送 (转)
2009-08-21 15:36 1304一 发送邮件的基类: Java代码 p ... -
怎样使用Spring发邮件?(转)
2009-08-21 15:35 1621关于Spring的邮件发送的功能演示: (我把程序中一些敏感 ... -
Spring的MVC framework
2009-08-21 15:23 1394下面列举一下Spring的MV ... -
Spring XML配置的12个技巧
2009-08-21 15:17 1088Spring是一个强有力的java程序框架,其被广泛应用于 ...
相关推荐
在"spring各种邮件发送"这个主题中,我们将探讨Spring框架如何帮助开发者实现电子邮件的发送。邮件服务在许多应用场景中都十分常见,例如用户注册确认、密码重置提醒等。 首先,Spring框架提供了`JavaMailSender`...
然后,我们创建一个邮件服务类,利用Spring的`JavaMailSender`接口发送邮件: ```java import org.springframework.beans.factory.annotation.Autowired; import org.springframework.mail.SimpleMailMessage; ...
本教程将详细讲解如何利用Spring Mail通过Gmail的SSL(安全套接层)协议来发送邮件。 首先,我们需要在项目中引入Spring Mail的依赖。如果你使用的是Maven,可以在pom.xml文件中添加以下依赖: ```xml <groupId>...
在Spring Boot应用中,利用JavaMailSender发送邮件是一种常见的需求,Spring Boot的`spring-boot-starter-mail`模块为我们提供了方便的自动化配置。首先,我们需要在项目的`pom.xml`文件中引入这个依赖: ```xml ...
这篇博客()将深入探讨如何利用Spring进行邮件发送。 首先,我们需要在项目中引入Spring的邮件支持依赖。如果你使用的是Maven,可以在pom.xml文件中添加以下依赖: ```xml <groupId>org.springframework ...
通过分析和运行这些文件,我们可以更深入地理解和学习如何在实际应用中利用Spring实现定时发送邮件的功能。 总结来说,Spring的定时任务和邮件服务功能为我们提供了强大的工具,能够自动化执行诸如发送邮件这样的...
在本话题中,我们将探讨“Spring高效批量邮件发送”这一技术点,这通常涉及到Spring框架中的邮件服务模块以及如何优化邮件发送的效率。 首先,Spring框架的MailSender接口是处理邮件发送的核心组件。它提供了send()...
`SendService`会利用这些API创建`Session`,然后通过`Transport`对象发送邮件。 在生成HTML表格方面,`CreateHtmlTable`可能是用于生成邮件正文的HTML代码的工具类。这通常涉及字符串拼接或使用模板引擎,如...
总的来说,使用Spring发送邮件是一个简单而强大的功能,它允许开发者轻松地集成邮件发送到各种业务逻辑中,提高应用的交互性和用户体验。通过理解和运用上述知识,你可以在自己的Java应用中实现高效、安全的邮件发送...
- **创建SimpleMailMessage对象**: SimpleMailMessage是Spring提供的一个预定义的邮件消息类,我们可以在这里设置邮件的发件人、收件人、主题和正文。 - **调用send方法发送邮件**: 使用JavaMailSenderImpl的send...
接下来,为了实现异步发送邮件,我们可以利用Spring的`@Async`注解和`TaskExecutor`。首先,我们需要创建一个`@Configuration`类来配置`TaskExecutor`: ```java @Configuration @EnableAsync public class ...
标题中的"Spring发送邮件简单实例"表明我们即将探讨的是如何使用Spring框架来实现电子邮件的发送功能。Spring框架提供了丰富的工具类和接口,使得在Java应用中发送邮件变得相当简便。这个实例可能是通过...
在本场景中,我们将利用Spring来管理JavaMail Sender对象,以便于发送邮件。 #### Velocity模板引擎 Velocity是一个基于Java的模板引擎,它允许开发者通过简单的模板语言来生成HTML网页、XML数据或者普通的文本。在...
从提供的文件列表中,我们可以推测`spring发送邮件.md`可能是一个Markdown格式的文档,详细讲解了如何配置和使用Spring发送邮件,而`1.png`、`2.png`和`3.png`可能是相关的截图,帮助读者更好地理解和学习这一过程。...
通过以上步骤,我们可以利用 Spring Mail 模块轻松地实现邮件的发送功能。此外,Spring Mail 还提供了更为高级的功能,比如发送 HTML 格式的邮件、附件等,这些都是在实际应用中非常有用的功能。
本教程将聚焦于Spring的一个实用特性——定时任务,特别是如何利用Spring集成JavaMailSender来实现定时发送邮件。我们将探讨以下知识点: 1. **Spring定时任务(Scheduled Tasks)** Spring通过`@Scheduled`注解和`...
本教程将深入探讨如何利用Spring框架的邮件服务模块来实现Java邮件发送功能,包括发送多附件、多人发送、抄送和暗送。 首先,`SpringMailUtil.java`这个文件很可能是邮件服务的核心工具类,它封装了邮件发送的相关...
在Spring Cloud框架中,我们可以利用`spring-cloud-starter-mail`模块来发送邮件。首先,需要在`pom.xml`文件中引入依赖: ```xml <groupId>org.springframework.cloud <artifactId>spring-cloud-starter-mail ...
这样的整合不仅提供了灵活的定时任务管理,还利用了Spring的依赖注入和管理能力,简化了邮件服务的配置和使用。通过源码分析和工具的使用,开发者可以更好地理解和定制这个过程,满足各种复杂的业务需求。