1. 程式人生 > 程式設計 >Springboot幾種任務的整合方法

Springboot幾種任務的整合方法

這篇文章主要介紹了Springboot幾種任務的整合方法,文中通過示例程式碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

一 非同步任務

啟動類

@MapperScan("com.topcheer.*.*.dao")
@SpringBootApplication
@EnableCaching
@EnableRabbit
@EnableAsync
public class Oss6Application {
  public static void main(String[] args) {
    SpringApplication.run(Oss6Application.class,args);
  }
}

Controller層

/**
 * @author WGR
 * @create 2019/10/12 -- 21:53
 */
@RestController
public class AsynController {
​
  @Autowired
  AsynService asyncService;
​
  @GetMapping("/hello")
  public String hello(){
    asyncService.hello();
    return "success";
  }
}

Service層

/**
 * @author WGR
 * @create 2019/10/12 -- 21:52
 */
@Service
public class AsynService {
​
  //告訴Spring這是一個非同步方法
  @Async
  public void hello() {
    try {
      Thread.sleep(3000);
    } catch (InterruptedException e) {
      e.printStackTrace();
    }
    System.out.println("處理資料中...");
  }
​
}

測試結果:

頁面直接顯示success,控制檯過3秒顯示處理資料中...

二 定時任務

此處的定時,標註在方法上+註解,假如想修改生成環境的時間,不是很靈活,後面補充Quartz+boot,採用資料庫配置和反射的原理。

注:java的cron表示式和Linux的不太一樣,請注意,java為6位,linux為5位。

啟動類

@SpringBootApplication
@EnableScheduling
public class Oss6Application {
  public static void main(String[] args) {
    SpringApplication.run(Oss6Application.class,args);
  }
}

服務類

@Service
public class ScheduledService {
​
  /**
   * 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/4 * * * * MON-SAT") //每4秒執行一次
  public void hello(){
    System.out.println("hello ... ");
  }
}

三 郵件任務

pom.xml

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

配置檔案

spring: 
 mail:
  username: ***********
  password: *********  (這是qq郵箱的授權碼)
  host: smtp.qq.com
spring.mail.properties.mail.smtp.ssl.enable=true

測試類

@Autowired(required = false)
  JavaMailSenderImpl mailSender;
​
  @Test
  public void contextLoads() {
    SimpleMailMessage message = new SimpleMailMessage();
    //郵件設定
    message.setSubject("通知-今晚開會");
    message.setText("今晚7:30開會");
​
    message.setTo("**************");
    message.setFrom("**************");
​
    mailSender.send(message);
  }
​
  @Test
  public void test02() throws Exception{
    //1、建立一個複雜的訊息郵件
    MimeMessage mimeMessage = mailSender.createMimeMessage();
    MimeMessageHelper helper = new MimeMessageHelper(mimeMessage,true);
​
    //郵件設定
    helper.setSubject("測試");
    helper.setText("<b style='color:red'>今天 7:30 開會",true);
​
    helper.setTo("***************");
    helper.setFrom("**************");
​
    //上傳檔案
    helper.addAttachment("nginx.md",new File("C:\\Users\\asus\\Desktop\\nginx.md"));
​
    mailSender.send(mimeMessage);
​
  }

結果:

總結

簡單的介紹了幾個任務,後面有時間會詳細說明在專案實戰的開發應用。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。