北在北方

太白枝头看,花开不计年,杯中浮日月,楼外是青天。

导航

2013年7月16日

摘要: 1、方式一:在server.xml中配置 1)tomcat安装路径下conf目录下的server.xml,在和标签之间加入下面的内容: 2)tomcat安装路径下conf目录下的context.xml,在和标签之间加入如下内容: 3)web.xml配置 app_DataSource jdbc/appDS javax.sql.DataSource Container 2、方式二:在context.xml中配置 1)tomcat安装路径下conf目录下的context.xml,在和标签之间加入如下内容: 2)web.xm... 阅读全文

posted @ 2013-07-16 15:44 CN.programmer.Luxh 阅读(2297) 评论(3) 推荐(4) 编辑

摘要: 使用spring提供的MailSender和JavaMailSender类。1、邮件对象类package cn.luxh.app.mail;import java.util.List;import org.springframework.core.io.AbstractResource;public class Email { //发件人 private String from; //收件人 private String[] to; //主题 private String subject; //邮件内容 private String text; ... 阅读全文

posted @ 2013-07-16 14:51 CN.programmer.Luxh 阅读(1215) 评论(1) 推荐(3) 编辑