springboot使用定时任务(注解),附spring框架定时任务

第一步:启动类添加注解

springboot使用定时任务(注解),附spring框架定时任务_第1张图片

注:我的启动类继承了一个父类,是因为项目需要打成war包。

第二步:在需要的地方使用 @Scheduled 来标记方法

springboot使用定时任务(注解),附spring框架定时任务_第2张图片

注:可以设为每隔多久执行,或者某一时刻执行,或者多少毫秒之后执行等。具体表达式网上资料很多

完成!


附:spring定时任务

第一步:spring配置文件,一般都叫 applicationContext.xml 或者之类的

springboot使用定时任务(注解),附spring框架定时任务_第3张图片

注:task标签最后放在后面,一开始我是放在上面的,结果没有任何作用。

名称空间如下:

xmlns:task="http://www.springframework.org/schema/task"

http://www.springframework.org/schema/tx

http://www.springframework.org/schema/tx/spring-tx-3.0.xsd

第二步:同上面的第二步,加注解和表达式

都没有操作pom文件。

上面提了下springboot打成war包,就说一下吧。

除了在启动类继承 SpringBootServletInitializer 类之外,还需要在pom文件中找到 spring-boot-starter-web 的依赖,添加如下节点:

springboot使用定时任务(注解),附spring框架定时任务_第4张图片

也就是:

		
			org.springframework.boot
			spring-boot-starter-web
			
			
				
					org.springframework.boot
					spring-boot-starter-tomcat
				
			
		

同时改一下打包类型:jar改成war

springboot使用定时任务(注解),附spring框架定时任务_第5张图片





LG


你可能感兴趣的:(springBoot)