1.pom文件java
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.zy</groupId> <artifactId>spring-boot-task-demo</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>spring-boot-task-demo</name> <description>Demo project for Spring Boot</description> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.4.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
2.启动类web
package com.zy; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.scheduling.annotation.EnableAsync; @SpringBootApplication // 支持异步线程,须要异步调用的service层方法上面加上@Async注解,两者联合,可起做用 @EnableAsync
//开启基于注解的定时任务
@EnableScheduling
public class SpringBootTaskDemoApplication { public static void main(String[] args) { SpringApplication.run(SpringBootTaskDemoApplication.class, args); } }
3.controller测试类spring
package com.zy.controller; import com.zy.service.AsyncServiceImpl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RequestMapping("/task/") @RestController public class AsyncController { @Autowired private AsyncServiceImpl asyncService; @RequestMapping("/async") public Object async(String name){ return name; } }
4.service层apache
4.1异步任务实现类安全
package com.zy.service; import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; @Service("asyncService") public class AsyncServiceImpl { @Async public String async(String name){ try { Thread.sleep(5000); } catch (InterruptedException e) { e.printStackTrace(); } return "good morning:" + name; } }
4.2定时任务实现类app
package com.zy.service; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Service; @Service public class ScheduledServiceImpl { /** * second(秒), minute(分), hour(时), day of month(日), month(月), day of week(周几). * 0 * * * * MON-FRI * 【0 0/5 14,18 * * ?】 天天14点整,和18点整,每隔5分钟执行一次 * 【0 15 10 ? * 1-6】 每一个月的周一至周六10:15分执行一次 * 【0 0 2 ? * 6L】每一个月的最后一个周六凌晨2点执行一次 * 【0 0 2 LW * ?】每一个月的最后一个工做日凌晨2点执行一次 * 【0 0 2-4 ? * 1#1】每一个月的第一个周一凌晨2点到4点期间,每一个整点都执行一次; */ // @Scheduled(cron = "0 * * * * MON-SAT") //@Scheduled(cron = "0,1,2,3,4 * * * * MON-SAT") // @Scheduled(cron = "0-4 * * * * MON-SAT") @Scheduled(cron = "0/50 * * * * MON-SAT") //每50秒执行一次 public void saySchedule(){ System.out.println("saySchedule"); } }
5.邮件任务配置异步
5.1在上述pom中引入javamail的依赖async
<!-- javamail的starter --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency>
5.2application.yaml配置maven
spring:
mail:
username: aaa@qq.com
# 受权码,而非真实密码
password: bbb
host: smtp.qq.com
# 配置安全链接
properties: mail.smtp.ssl.enable=true
5.3测试类spring-boot
package com.zy; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.mail.SimpleMailMessage; import org.springframework.mail.javamail.JavaMailSenderImpl; import org.springframework.mail.javamail.MimeMessageHelper; import org.springframework.test.context.junit4.SpringRunner; import javax.mail.internet.MimeMessage; import java.io.File; @RunWith(SpringRunner.class) @SpringBootTest public class SpringBootTaskDemoApplicationTests { @Autowired JavaMailSenderImpl mailSender; // 简单邮件发送 @Test public void contextLoads() { SimpleMailMessage message = new SimpleMailMessage(); //邮件设置 message.setSubject("通知-今晚开会"); message.setText("今晚开会"); message.setTo("ccc@163.com"); message.setFrom("aaa@qq.com"); mailSender.send(message); } @Test public void test02() throws Exception{ //一、建立一个复杂的消息邮件 MimeMessage mimeMessage = mailSender.createMimeMessage(); MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true); //邮件设置 helper.setSubject("通知-今晚开会"); helper.setText("<b style='color:red'>今天 7:30 开会</b>",true); helper.setTo("ccc@163.com"); helper.setFrom("aaa@qq.com"); //上传文件 helper.addAttachment("1.jpg",new File("C:\\Users\\lfy\\Pictures\\Saved Pictures\\1.jpg")); helper.addAttachment("2.jpg",new File("C:\\Users\\lfy\\Pictures\\Saved Pictures\\2.jpg")); mailSender.send(mimeMessage); } }