概述
1、新建web项目
2、导入以下的jar包
3、编写配置文件:
spring-servlet.xml
xmlns:task="http://www.springframework.org/schema/task"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
4、web.xml中的配置:
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID"
version="3.0">
contextConfigLocation
/WEB-INF/spring-servlet.xml
org.springframework.web.context.ContextLoaderListener
spring
org.springframework.web.servlet.DispatcherServlet
1
spring
/
6、写一个java方法(供调用的)
package com.dooioo.hello;
import org.springframework.stereotype.Service;
@Service(value = "taskJob")
public class TaskJob {
public void job1() {
System.out.println("任务1正在执行中。。。");
}
public void job2() {
System.out.println("任务2正在执行中。。。");
}
}
之后,运行程序,程序就会按照在service-config.xml中配置的时间频度去定时执行。
配置中,从左到右,依次是秒,分,时,日,月,年
最后
以上就是靓丽小鸭子为你收集整理的java项目配置定时任务_java项目中配置定时任务的全部内容,希望文章能够帮你解决java项目配置定时任务_java项目中配置定时任务所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复