
002、Spring Boot
文章平均质量分 54
青春1314
这个作者很懒,什么都没留下…
展开
-
oracle数据库函数
1、to_date(str,format):字符串转时间 select to_date('2019-08-29 23:13:11','yyyy-MM-dd HH24:mi:ss') from dual; 2、字符串2019-08-29 23:13:11变为字符串2019-08-29 select to_char(to_date('2019-08-29 23:13:1...原创 2019-08-30 01:24:19 · 159 阅读 · 0 评论 -
Spring Boot定时任务
1、使用的注解: @EnableScheduling:启动类上开启基于注解的定时任务 @Scheduled:标识的方法会进行定时处理 2、启动类 import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.scheduling.annotation.EnableSch原创 2022-03-04 20:21:25 · 109 阅读 · 0 评论 -
Spring Boot异步任务
1、使用的注解: @EnableAsync:启动类上开启基于注解的异步任务 @Async:标识的方法会异步执行 2、demo ①api import com.mengxuegu.springboot.service.AsyncService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping...原创 2022-03-04 19:19:00 · 560 阅读 · 0 评论