springboot-14-异步、定时、邮件任务

首先创建一个springboot项目,勾一个web依赖即可

异步任务

1.创建一个AsuncService类

异步处理还是非常常用的,比如我们在网站上发送邮件,后台会去发送邮件,此时前台会造成响应不动,直到邮件发送完毕,响应才会成功,所以我们一般会采用多线程的方式去处理这些任务。

编写方法,假装正在处理数据,使用线程设置一些延时,模拟同步等待的情况;

@Service
public class AsyncService {
    
    

    public void hello(){
    
    
        try {
    
    
            Thread.sleep(3000);
        } catch (InterruptedException e) {
    
    
            e.printStackTrace();
        }
        System.out.println("业务进行中......");
    }
}

2.创建一个AsyncController类

@RestController
public class AsyncController {
    
    

    @Autowired
    AsyncService asyncService;

    @GetMapping("/hello")
    public String hello(){
    
    
        asyncService.hello();
        return "sucess";
    }
}

3.测试,发现界面没有立即返回结果,而是等后台执行完才返回。
4.给hello方法添加@Async注解;

@Service
public class AsyncService {
    
    

    @Async //告诉spring这是一个异步方法
    public void hello(){
    
    
        try {
    
    
            Thread.sleep(3000);
        } catch (InterruptedException e) {
    
    
            e.printStackTrace();
        }
        System.out.println("业务进行中......");
    }
}

SpringBoot就会自己开一个线程池,进行调用!但是要让这个注解生效,我们还需要在主程序上添加一个注解@EnableAsync ,开启异步注解功能;

@EnableAsync //开启异步注解功能
@SpringBootApplication
public class Springboot08TaskApplication {
    
    

    public static void main(String[] args) {
    
    
        SpringApplication.run(Springboot08TaskApplication.class, args);
    }

}

重启测试,网页瞬间响应,后台代码继续执行!

定时任务

项目开发中经常需要执行一些定时任务,比如需要在每天凌晨的时候,分析一次前一天的日志信息,Spring为我们提供了异步执行任务调度的方式,提供了两个接口。

  • TaskExecutor接口

  • TaskScheduler接口

两个注解:

  • @EnableScheduling

  • @Scheduled

cron表达式:
在这里插入图片描述
在这里插入图片描述
1.创建一个ScheduledService类

@Service
public class ScheduledService {
    
    

	//cron表达式
    @Scheduled(cron = "0 9 20 * * 0-7") //每天20:09执行
    public void hello(){
    
    
        System.out.println("hello Scheduled....");
    }
}

2.需要在主程序上增加@EnableScheduling 开启定时任务功能

@EnableScheduling //开启基于注解的定时任务
@SpringBootApplication
public class Springboot08TaskApplication {
    
    

    public static void main(String[] args) {
    
    
        SpringApplication.run(Springboot08TaskApplication.class, args);
    }

}

测试

3、我们来详细了解下cron表达式;

http://www.bejson.com/othertools/cron/

4.常用的表达式

(1)0/2 * * * * ?   表示每2秒 执行任务
(1)0 0/2 * * * ?   表示每2分钟 执行任务
(1)0 0 2 1 * ?   表示在每月的1日的凌晨2点调整任务
(2)0 15 10 ? * MON-FRI   表示周一到周五每天上午10:15执行作业
(3)0 15 10 ? 6L 2002-2006   表示2002-2006年的每个月的最后一个星期五上午10:15执行作
(4)0 0 10,14,16 * * ?   每天上午10点,下午2点,4点
(5)0 0/30 9-17 * * ?   朝九晚五工作时间内每半小时
(6)0 0 12 ? * WED   表示每个星期三中午12点
(7)0 0 12 * * ?   每天中午12点触发
(8)0 15 10 ? * *   每天上午10:15触发
(9)0 15 10 * * ?     每天上午10:15触发
(10)0 15 10 * * ?   每天上午10:15触发
(11)0 15 10 * * ? 2005   2005年的每天上午10:15触发
(12)0 * 14 * * ?     在每天下午2点到下午2:59期间的每1分钟触发
(13)0 0/5 14 * * ?   在每天下午2点到下午2:55期间的每5分钟触发
(14)0 0/5 14,18 * * ?     在每天下午2点到2:55期间和下午6点到6:55期间的每5分钟触发
(15)0 0-5 14 * * ?   在每天下午2点到下午2:05期间的每1分钟触发
(16)0 10,44 14 ? 3 WED   每年三月的星期三的下午2:10和2:44触发
(17)0 15 10 ? * MON-FRI   周一至周五的上午10:15触发
(18)0 15 10 15 * ?   每月15日上午10:15触发
(19)0 15 10 L * ?   每月最后一日的上午10:15触发
(20)0 15 10 ? * 6L   每月的最后一个星期五上午10:15触发
(21)0 15 10 ? * 6L 2002-2005   2002年至2005年的每月的最后一个星期五上午10:15触发
(22)0 15 10 ? * 6#3   每月的第三个星期五上午10:15触发

邮件任务

邮件发送,在我们的日常开发中,也非常的多,Springboot也帮我们做了支持

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

  • SpringBoot 自动配置MailSenderAutoConfiguration

  • 定义MailProperties内容,配置在application.yml中

  • 自动装配JavaMailSender

  • 测试邮件发送

1.引入依赖

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-mail</artifactId>
</dependency>

查看一下MailProperties

@ConfigurationProperties(
   prefix = "spring.mail"
)
public class MailProperties {
    
    
   private static final Charset DEFAULT_CHARSET;
   private String host;
   private Integer port;
   private String username;
   private String password;
   private String protocol = "smtp";
   private Charset defaultEncoding;
   private Map<String, String> properties;
   private String jndiName;
}

2.配置文件

[email protected]
spring.mail.password=你的qq授权码
spring.mail.host=smtp.qq.com
# qq需要配置ssl
spring.mail.properties.mail.smtp.ssl.enable=true

获取授权码:在QQ邮箱中的设置->账户->开启pop3和smtp服务
在这里插入图片描述
3.Spring单元测试

@SpringBootTest
class Springboot08TaskApplicationTests {
    
    

    @Autowired
    JavaMailSenderImpl mailSender;

    @Test
    void contextLoads() {
    
    
        //方式一:简单的邮件
        SimpleMailMessage message = new SimpleMailMessage();
        message.setSubject("通知-明天放假");
        message.setText("今晚7:30开会");

        message.setTo("[email protected]");
        message.setFrom("[email protected]");
        mailSender.send(message);
    }

    @Test
    void contextLoads2() throws MessagingException {
    
    
        //方式二:复杂的邮件
        MimeMessage mimeMessage = mailSender.createMimeMessage();
        MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true);

        helper.setSubject("通知-明天上课");
        helper.setText("<b style='color:red'>今天 7:30来开会</b>",true);

        helper.addAttachment("1.jpg",new File("C:\\Users\\Lenovo\\Desktop\\1.jpg"));
        //helper.addAttachment("2.jpg",new File(""));

        helper.setTo("[email protected]");
        helper.setFrom("[email protected]");

        mailSender.send(mimeMessage);
    }
}

查看邮箱,邮件接收成功!

猜你喜欢

转载自blog.csdn.net/qq_42665745/article/details/115098371