spring-context-support是spring-context的补充,如下子包说明
1. cache
一、cache报下补充org.springframework.cache.Cache的不同实现,主要是caffine ehcache jcache
二、使用TransactionSynchronizationManager提供了事务支持
2. mail
新增对邮件支持,使用javax.mail
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
spring:
mail:
host: smtp.qq.com
username: me@qq.com
password: qq授权吗
default-encoding: UTF-8
properties:
mail:
smtp:
auth: true
port: 587
starttls:
enable: true
required: true
@Autowired
private JavaMailSender javaMailSender;
public void sendAttachmentsMail(String to, String subject, String content, String filePath) {
MimeMessage message = mailSender.createMimeMessage();
try {
MimeMessageHelper helper = new MimeMessageHelper(message, true);
helper.setFrom(from);
helper.setTo(to);
helper.setSubject(subject);
helper.setText(content, true);
FileSystemResource file = new FileSystemResource(new File(filePath));
String fileName = filePath.substring(filePath.lastIndexOf(File.separator));
helper.addAttachment(fileName, file);
javaMailSender.send(message);
} catch (MessagingException e) {
e.printStackTrace();
logger.error("发送邮件时发生异常!", e);
}
}
3. scheduling
spring定时任务初始化是,先重容器中查找TaskScheduler,如果没有则查找ScheduledExecutorService,都没有通过RegisterDefaultTaskSchedulerPostProcessor注册默认执行器,
默认执行器的实现有两种。
如果没有指定执行器会使用一个单线程ScheduledExecutorService,所以尽量定义自己的执行器
commonj已经不建议使用了
quartz比spring的@Scheduled功能能加丰富,支持数据库存储,分布式任务,动态修改任务
使用quartz需要定义QuartzJobBean,JobDetail,Trigger还是比较麻烦,推荐使用xxljob,更好管理
4. ui
对FreeMaker的支持