目录
2、使用@Scheduled(cron = "0 * * * * MON-FRI")注解
1、邮件发送需要引入spring-boot-starter-mail
2、Spring Boot 自动配置MailSenderAutoConfiguration
3、定义MailProperties内容,配置在application.yml中
一、异步任务
在Java应用中,绝大多数情况下都是通过同步的方式来实现交互处理的;但是在 处理与第三方系统交互的时候,容易造成响应迟缓的情况,之前大部分都是使用 多线程来完成此类任务,其实,在Spring 3.x之后,就已经内置了@Async来完 美解决这个问题
两个注解: @EnableAysnc、@Aysnc
1、开启异步注解
2、使用@Async注解
3、Controller层调用方法
4、效果
当访问“/hello”接口的时候,不会等待3s才出现success
二、定时任务
项目开发中经常需要执行一些定时任务,比如需要在每天凌晨时候,分析一次前 一天的日志信息。Spring为我们提供了异步执行任务调度的方式,提供 TaskExecutor 、TaskScheduler 接口。
两个注解:@EnableScheduling、@Scheduled
1、开启基于注解的定时任务
2、使用@Scheduled(cron = "0 * * * * MON-FRI")注解
其他的cron写法:
@Scheduled(cron = "0,1,2,3,4 * * * * MON-FRI") //枚举 @Scheduled(cron = "0-4 * * * * MON-FRI") //区间 @Scheduled(cron = "0/4 * * * * MON-FRI") //步长:从0秒启动,每4秒执行一次
3、效果
周一到周五每个0秒的时候都会在控制台打印hello
三、邮件任务
1、邮件发送需要引入spring-boot-starter-mail
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
2、Spring Boot 自动配置MailSenderAutoConfiguration
3、定义MailProperties内容,配置在application.yml中
spring:
mail:
username: 1195@qq.com #qq邮箱
password: XXXXXXX #授权码,这里不是qq密码
host: smtp.qq.com #qq邮箱服务器
properties:
mail:
smtp:
ssl:
enable: true #开启SSl安全验证
注意要在qq邮箱中开启一下服务并生成授权码
4、自动装配JavaMailSender
5、测试邮件发送
(1)简单邮件发送
@RunWith(SpringRunner.class)
@SpringBootTest
public class SpringbootTaskApplicationTests {
@Autowired
JavaMailSenderImpl mailSender;
@Test
void contextLoads() {
SimpleMailMessage simpleMailMessage = new SimpleMailMessage();
//邮件设置
simpleMailMessage.setSubject("通知:今晚开会");
simpleMailMessage.setText("今晚7:30开会");
simpleMailMessage.setTo("1970457366@qq.com");
simpleMailMessage.setFrom("1193097525@qq.com");
mailSender.send(simpleMailMessage);
}
}
运行结果
(2)带附件的邮件发送
@Test
public void test02() throws Exception{
//创建一个复杂的消息邮件
MimeMessage mimeMessage = mailSender.createMimeMessage();
MimeMessageHelper helper = new MimeMessageHelper(mimeMessage,true);
//邮件设置
helper.setSubject("通知:今晚开会");
helper.setText("<h2 style='color:red'>今晚7:30开会</h2>",true);
helper.setTo("1970457366@qq.com");
helper.setFrom("1193097525@qq.com");
//上传文件
helper.addAttachment("a.jpg",new File("C:\\Users\\zxx\\Desktop\\1.jpg"));
helper.addAttachment("b.jpg",new File("C:\\Users\\zxx\\Desktop\\2.jpg"));
mailSender.send(mimeMessage);
}
运行结果