我是靠谱客的博主 靓丽小鸭子,最近开发中收集的这篇文章主要介绍java项目配置定时任务_java项目中配置定时任务,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、新建web项目

2、导入以下的jar包

0818b9ca8b590ca3270a3433284dd417.png

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项目中配置定时任务所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部