时间:2021-05-19
前言
在写项目的时候经常需要特定的时间做一些特定的操作,尤其是游戏服务器,维护线程之类的,这时候就需要用到定时器。
如果此时你刚好用的是spring的话,哪么@Scheduled注解是非常好用的。
使用spring @Scheduled注解执行定时任务:
1,在spring-MVC.xml文件中进行配置
2,直接在代码控制层使用即可
package xkhd.game.fix;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.context.annotation.Lazy;import org.springframework.scheduling.annotation.Scheduled;import org.springframework.stereotype.Component;/** * 游戏数据表维护 * * @author Administrator * */@Component@Lazy(value = false)public class fix_game { @Autowired private fix_Service fix_Service; /** * 每分钟 */ @Scheduled(cron = "0 */1 * * * ?") public void Everyminute_control() { System.out.println("***********每分钟"); fix_Service.Everyminute(); } /** * 每小时 */ @Scheduled(cron = "0 0 0/1 * * ?") public void Everyhours_control() { System.out.println("***********每小时"); fix_Service.Everyhours(); fix_Service.deleteUserlogincodeCt(); fix_Service.weixin(); } /** * 每天零点 */ @Scheduled(cron = "0 0 0 * * ?") public void Everyday_control() { System.out.println("***********每天零点"); fix_Service.Morningeveryday(); }}上面是一些项目中的源码,仅供参考。
总结
到此这篇关于java使用@Scheduled注解执行定时任务的文章就介绍到这了,更多相关java @Scheduled注解执行定时任务内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Spring提供了@Scheduled注解用于定时任务。一、@Scheduled的基本使用启用调度支持:@EnableScheduling可以将@Schedul
在SpringBoot项目中,通过@EnableScheduling可启用Spring自带的定时任务支持,在通过@Scheduled注解定义定时任务,但是通过注
一、背景之前公司经常会遇到配置定时任务,简单的任务可以直接依赖spring。简单任务直接使用@scheduled注解配合@EnableScheduling。但是
@schedule注解是springboot常用的定时任务注解,使用起来简单方便,但是如果定时任务非常多,或者有的任务很耗时,会影响到其他定时任务的执行,因为s
前言在Spring+SpringMVC环境中,一般来说,要实现定时任务,我们有两中方案,一种是使用Spring自带的定时任务处理器@Scheduled注解,另一