欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

java使用@Scheduled注解执行定时任务

时间:2021-08-28 09:27:19|栏目:JAVA代码|点击:

前言

在写项目的时候经常需要特定的时间做一些特定的操作,尤其是游戏服务器,维护线程之类的,这时候就需要用到定时器。

如果此时你刚好用的是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代码

下一篇:java删除文件和文件夹具体实现

本文标题:java使用@Scheduled注解执行定时任务

本文地址:http://www.codeinn.net/misctech/170487.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有