1、异步任务

在Java应用中,绝大多数情况下都是通过同步的方式来实现交互处理的;但是在处理与第三方系统交互的时候,容易造成响应迟缓的情况,之前大部分都是使用多线程来完成此类任务,其实,在Spring 3.x之后,就已经内置了@Async来完美解决这个问题。
两个注解:
@EnableAysnc、@Aysnc

  1. @EnableAsync//开启异步注解功能
  2. @Service
  3. public class AsyncService {
  4. //告诉springBoot这是一个异步方法
  5. @Async
  6. public void hello(){
  7. try {
  8. Thread.sleep(3000);
  9. } catch (InterruptedException e) {
  10. e.printStackTrace();
  11. }
  12. System.out.println("处理数据中");
  13. }
  14. }
  15. @RestController
  16. public class AsyncController {
  17. @Autowired
  18. AsyncService asyncService;
  19. @GetMapping("/hello")
  20. public String hello(){
  21. asyncService.hello();
  22. return "success";
  23. }
  24. }

2、定时任务

项目开发中经常需要执行一些定时任务,比如需要在每天凌晨时候,分析一次前一天的日志信息。Spring为我们提供了异步执行任务调度的方式,提供TaskExecutor、TaskScheduler接口。
两个注解:@EnableScheduling、@Scheduled
cron表达式:
image.pngimage.png

  1. /**
  2. * <ul>
  3. * <li>second</li>
  4. * <li>minute</li>
  5. * <li>hour</li>
  6. * <li>day of month</li> 每个月的几号
  7. * <li>month</li>
  8. * <li>day of week</li>
  9. * </ul>
  10. *
  11. * <p>For example, {@code "0 * * * * MON-FRI"} means once per minute on weekdays</p>
  12. *
  13. * 0 0/5 14,18 * * ? 每天 14 点和 18 点 五分钟执行一次
  14. * 0 15 10 ? * 1-6 每个月的 周一到周六 的 10:15 执行一次
  15. * 0 0 2 ? * 6L 每个月的最后一个周六凌晨两点执行
  16. * 0 0 2 LW * ? 每个月的最后一个工作日 2:00
  17. * 0 0 2-4 ? * 1#1 每个月的第一周 2:00-4:00 整点执行
  18. */
  19. //@Scheduled(cron = "0 * * * * MON-FRI")
  20. //@Scheduled(cron = "0,1,2,3,4 * * * * MON-FRI")
  21. //@Scheduled(cron = "0-4 * * * * MON-FRI")
  22. @Scheduled(cron = "0/4 * * * * MON-FRI")//每 4s 执行一次
  23. public void hello(){
  24. System.out.println("hello---");
  25. }

3、邮件任务

  • •邮件发送需要引入spring-boot-starter-mail

    1. <dependency>
    2. <groupId>org.springframework.boot</groupId>
    3. <artifactId>spring-boot-starter-mail</artifactId>
    4. </dependency>
  • image.png

  • 自己邮箱开启服务
    • image.png
  • •Spring Boot 自动配置MailSenderAutoConfiguration
  • •定义MailProperties内容,配置在application.yml中 ```java spring.mail.username=2778666783@qq.com spring.mail.password=bfzjxpqfaaclddcb spring.mail.host=smtp.qq.com

spring.mail.properties.mail.smtp.ssl.enable=true

  1. - •自动装配JavaMailSender
  2. - •测试邮件发送
  3. ```java
  4. @Autowired
  5. JavaMailSenderImpl mailSender;
  6. @Test
  7. void contextLoads() {
  8. SimpleMailMessage msg = new SimpleMailMessage();
  9. //邮件设置标题
  10. msg.setSubject("通知今晚开会");
  11. msg.setText("今晚7:30开会");
  12. msg.setTo("nkf15105201014@163.com");
  13. msg.setFrom("2778666783@qq.com");
  14. mailSender.send(msg);
  15. }

复杂邮件

  1. @Test
  2. public void test() throws MessagingException, FileNotFoundException {
  3. //1、创建一个复杂的消息邮件
  4. MimeMessage mimeMessage = mailSender.createMimeMessage();
  5. MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true);
  6. //邮件设置标题
  7. helper.setSubject(data(new Date()));
  8. helper.setText("<b style='color:red'>好好学习天天向上</b>");
  9. //上传附件
  10. helper.addAttachment("1.jpg",ResourceUtils.getFile("classpath:" + "static/img/1.jpg"));
  11. helper.addAttachment("2.jpg",ResourceUtils.getFile("classpath:" + "static/img/2.jpg"));
  12. helper.addAttachment("3.jpg",ResourceUtils.getFile("classpath:" + "static/img/3.jpg"));
  13. helper.setTo("2182908911@qq.com");
  14. helper.setFrom("2778666783@qq.com");
  15. mailSender.send(mimeMessage);
  16. System.out.println("发送成功");
  17. }