1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > 使用Spring使用Java发送电子邮件– GMail SMTP服务器示例

使用Spring使用Java发送电子邮件– GMail SMTP服务器示例

时间:2022-02-12 11:03:42

相关推荐

使用Spring使用Java发送电子邮件– GMail SMTP服务器示例

对于使用Java发送电子邮件, JavaMail API是标准解决方案。 如官方网页所述,“ JavaMail API提供了独立于平台和协议的框架来构建邮件和消息传递应用程序”。 必需的类包含在JavaEE平台中,但是要在独立的JavaSE应用程序中使用它,您必须从这里下载相应的JAR。

注意:除非您使用Java SE 6,否则还需要提供javax.activation包的JavaBeans激活框架(JAF)扩展。 我们建议您使用最新版本的JAF 1.1.1版本。 JAF包含在Java SE 6中。

不幸的是,JavaMail可能有点笨拙,并且难以配置和使用。 如果您已经为应用程序拥抱了Spring框架 ,那么您将很高兴发现Spring提供了一个邮件抽象层。 如参考文档所述,“ Spring框架提供了一个有用的实用程序库,用于发送电子邮件,该电子邮件使用户免受底层邮件系统的限制,并负责代表客户端进行低级资源处理。” 太好了,现在让我们看看如何利用这个库。

首先,创建一个名为“ SpringMailProject”的新Eclipse项目。 在项目的类路径中,确保包括以下库(请注意,使用的是3.0.2.RELEASE Spring版本):

mail.jar(JavaMail的核心类) org.springframework.asm-3.0.2.RELEASE.jar org.springframework.beans-3.0.2.RELEASE.jar org.springframework.context.support-3.0.2.RELEASE.jar org.springframework.core-3.0.2.RELEASE.jar org.springframework.expression-3.0.2.RELEASE.jar .mons.logging-1.1.1.jar

注意1:需要Apache的commons-logging库,该库包含在classpath中

注意2:如果您使用的是Java 1.5或更早版本,则还需要Java激活框架。

我们将使用MailSender ,这是一个Spring接口,用于定义发送简单邮件的策略。 由于这只是一个接口,因此我们需要一个具体的实现,并以JavaMailSenderImpl的形式出现。 此类同时支持JavaMail MimeMessage和Spring SimpleMailMessage 。

我们将创建一个简单的Spring服务,该服务将用于发送邮件。 一种方法将在现场创建SimpleMailMessage ,而另一种方法将使用预配置的默认消息。 该服务的源代码如下:

package com.javacodegeeks.spring.mail;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.mail.MailSender;import org.springframework.mail.SimpleMailMessage;import org.springframework.stereotype.Service;@Service("mailService")public class MailService {@Autowiredprivate MailSender mailSender;@Autowiredprivate SimpleMailMessage alertMailMessage;public void sendMail(String from, String to, String subject, String body) {SimpleMailMessage message = new SimpleMailMessage();message.setFrom(from);message.setTo(to);message.setSubject(subject);message.setText(body);mailSender.send(message);}public void sendAlertMail(String alert) {SimpleMailMessage mailMessage = new SimpleMailMessage(alertMailMessage);mailMessage.setText(alert);mailSender.send(mailMessage);}}

该类只是一个POJO,其服务名称为“ mailService”,由构造型Service批注标记。 使用的bean接线策略是自动装配之一 ,因此使用了Autowired注释。 注意,可以使用bean的名称和类型来执行自动装配。

引导容器的相应Spring XML文件如下:

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="/schema/beans"xmlns:xsi="/2001/XMLSchema-instance" xmlns:p="/schema/p"xmlns:aop="/schema/aop" xmlns:context="/schema/context"xmlns:jee="/schema/jee" xmlns:task="/schema/task"xsi:schemaLocation="/schema/aop /schema/aop/spring-aop-3.0.xsd/schema/beans /schema/beans/spring-beans-3.0.xsd/schema/context /schema/context/spring-context-3.0.xsd/schema/jee /schema/jee/spring-jee-3.0.xsd/schema/tx /schema/tx/spring-tx-3.0.xsd/schema/task /schema/task/spring-task-3.0.xsd"><context:component-scan base-package="com.javacodegeeks.spring.mail" /> <bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl"><property name="host" value=""/><property name="port" value="25"/><property name="username" value="myusername@"/><property name="password" value="mypassword"/><property name="javaMailProperties"><props><!-- Use SMTP transport protocol --><prop key="mail.transport.protocol">smtp</prop><!-- Use SMTP-AUTH to authenticate to SMTP server --><prop key="mail.smtp.auth">true</prop><!-- Use TLS to encrypt communication with SMTP server --><prop key="mail.smtp.starttls.enable">true</prop><prop key="mail.debug">true</prop></props></property></bean><bean id="alertMailMessage" class="org.springframework.mail.SimpleMailMessage"><property name="from"> <value>myusername@</value></property><property name="to"> <value>myusername@</value></property><property name="subject" value="Alert - Exception occurred. Please investigate"/></bean></beans>

这是一个非常简单的Spring配置文件。 不过,有些事情要提及:

声明从其开始上下文扫描的基本软件包,并将其设置为“ com.javacodegeeks.spring.mail”。 声明了“ mailSender” bean,并适当设置了其一堆属性(使用您自己的SMTP服务器配置属性和凭据)。 “ alertMailMessage”是预配置的Spring SimpleMailMessage,将使用“按名称自动装配”将其注入“ MailService”类中。

如果您希望使用Gmail的SMTP服务器,请确保正确配置了以下JavaMail属性:

host=port=25username=your-gmail-usernamepassword=your-gmail-passwordmail.transport.protocol=smtpmail.smtp.auth=truemail.smtp.starttls.enable=true

在开发阶段,如果希望邮件客户端生成信息性日志,请将“ mail.debug”设置为true。 但是,请记住在生产时将其设置为false,因为日志量可能会降低应用程序的性能和/或填充硬盘。

最后,我们创建一个类,该类将用于创建Spring容器并测试我们创建的简单邮件服务。 源代码如下:

package com.javacodegeeks.spring.mail;import org.springframework.context.ApplicationContext;import org.springframework.context.support.FileSystemXmlApplicationContext;public class MailServiceTest {public static void main(String[] args) {ApplicationContext context = new FileSystemXmlApplicationContext("conf/spring.xml");MailService mailService = (MailService) context.getBean("mailService");mailService.sendMail("myusername@", "myusername@", "Testing123", "Testing only \n\n Hello Spring Email Sender");mailService.sendAlertMail("Exception occurred");}}

FileSystemXmlApplicationContext类用作ApplicationContext 。 我们在构造函数中传递Spring的XML文件位置,该类创建容器,实例化Bean并处理依赖项。 你不爱春天吗? 接下来,我们使用“ getBean ”方法检索“ MailService”服务的引用,并调用这两个方法。

就这样。 与往常一样,您可以从此处下载完整的Eclipse项目。

相关文章 :依赖注入–手动方式 使用Spring Security保护GWT应用程序 带有Spring和Maven教程的JAX–WS 建立自己的GWT Spring Maven原型 使用Spring AspectJ和Maven进行面向方面的编程 Spring3 RESTful Web服务 JBoss 4.2.x Spring 3 JPA Hibernate教程

翻译自: //07/java-mail-spring-gmail-smtp.html

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。