栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

Springboot的异步、定时、邮件任务

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Springboot的异步、定时、邮件任务

一、异步任务

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

package com.rk.service;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
@Service
public class AsyncService {
    public void hello(){
        try {
            System.out.println("数据处理中~");
            Thread.sleep(3000);//停止三秒
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

        2、编写一个AsyncController类 

package com.rk.controller;
import com.rk.service.AsyncService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class AsyncController {
    @Autowired
    AsyncService asyncService;
    @GetMapping("/hello")
    public String hello(){
        asyncService.hello();
        return "success";
    }
}

        现在启动项目进行测试,三秒后才会出现success,现在还不是异步

        3、开启异步

 @Async//告诉spring这是一个异步方法
    public void hello(){
        try {
            System.out.println("数据处理中~");
            Thread.sleep(3000);//停止三秒
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
@EnableAsync//开启异步注解功能
@SpringBootApplication
public class Springboot09TestApplication {
    public static void main(String[] args) {
        SpringApplication.run(Springboot09TestApplication.class, args);
    }
}
 二、邮件任务

        1、引入依赖

       
            org.springframework.boot
            spring-boot-starter-mail
        

        2、配置mail

#用户名
spring.mail.username=1624603357@qq.com
#密码
spring.mail.password=yblyxhvmnsurbbci
#发送邮件服务器
spring.mail.host=smtp.qq.com
#开启加密验证 ssl
spring.mail.properties.mail.smtp.ssl.enable=true

        3、测试 

        简单邮件

     @Autowired
    JavaMailSenderImpl mailSender;


     @Test
    void contextLoads() {
        SimpleMailMessage mailMessage = new SimpleMailMessage();
        mailMessage.setSubject("你好,rk");//邮件标题
        mailMessage.setText("测试邮件");//邮件内柔
        mailMessage.setTo("r1624603357@126.com");//收件人邮箱
        mailMessage.setFrom("1624603357@qq.com");//发件人邮箱
        mailSender.send(mailMessage);

    }

        复杂邮件 

    @Test
    void contextLoads2() throws MessagingException {
        //一个复杂的邮件
        MimeMessage mimeMessage = mailSender.createMimeMessage();

        //组装
        MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true);

        //正文
        helper.setSubject("你好,rk");
        helper.setText("

测试邮件",true); //附件 helper.addAttachment("1.png",new File("D:\QLDownloadGame\2\1.png")); helper.addAttachment("rk.docx",new File("E:\桌面\rk.docx")); // 发/收件人 helper.setTo("r1624603357@126.com"); helper.setFrom("1624603357@qq.com"); //发送 mailSender.send(mimeMessage); }

三、定时任务

        1、编写一个ScheduledService类

@Service
public class ScheduledService {
    //秒 分 时 日 月 周几
    //0 * * * * MON-FRI
    //注意cron表达式的用法;   每天20:28 0秒执行该方法
    @Scheduled(cron = "0 28 20 * * 0-7")
    public void hello(){
        System.out.println("现在是20:28");
        System.out.println("hello.....");
    }
}

                项目启动后每天20:28:00执行hello方法

        2、添加注解

@EnableAsync//开启异步注解功能
@EnableScheduling//开启定时功能注解
@SpringBootApplication
public class Springboot09TestApplication {
    public static void main(String[] args) {
        SpringApplication.run(Springboot09TestApplication.class, args);
    }
}

        cron表达式练习

 

      


 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/389996.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号