基于spring的web项目定时操作_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 基于spring的web项目定时操作

基于spring的web项目定时操作

 2014/6/12 18:12:40  知了ing  程序员俱乐部  我要评论(0)
  • 摘要:废话不多说,直接上代码,很简单配置一下项目启动就行1,web.xml<?xmlversion="1.0"encoding="UTF-8"?><web-appxmlns: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
  • 标签:Web Spring 项目 操作
废话不多说,直接上代码,很简单 配置一下项目启动就行
1,web.xml
class="java">
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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_2_5.xsd"
	version="2.5">
	<display-name>demp</display-name>
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath*:/applicationContext.xml</param-value>
	</context-param>
	<listener>
		<listener-class>
			org.springframework.web.context.ContextLoaderListener
		</listener-class>
	</listener>
	<filter>
		<filter-name>encodingFilter</filter-name>
		<filter-class>
			org.springframework.web.filter.CharacterEncodingFilter
		</filter-class>
		<init-param>
			<param-name>encoding</param-name>
			<param-value>UTF-8</param-value>
		</init-param>
		<init-param>
			<param-name>forceEncoding</param-name>
			<param-value>true</param-value>
		</init-param>
	</filter>
	<filter-mapping>
		<filter-name>encodingFilter</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	<welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    <distributable/>
</web-app>

2,applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans  xmlns="http://www.springframework.org/schema/beans"
		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jee="http://www.springframework.org/schema/jee"
		xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
		xsi:schemaLocation="http://www.springframework.org/schema/beans    
	    http://www.springframework.org/schema/beans/spring-beans-3.2.xsd    
	    http://www.springframework.org/schema/tx    
	    http://www.springframework.org/schema/tx/spring-tx-3.2.xsd    
	    http://www.springframework.org/schema/jee    
	    http://www.springframework.org/schema/jee/spring-jee-3.2.xsd    
	    http://www.springframework.org/schema/context    
	    http://www.springframework.org/schema/context/spring-context-3.2.xsd"
	> 
	<!-- enable component scanning (beware that this does not enable mapper scanning!) -->
    <context:component-scan base-package="com"/>

    <!-- enable autowire -->
    <context:annotation-config/>
     <!-- 自定义取数报表 30分钟扫描一遍 -->
	<bean id="testService" class="com.TestService"></bean>
	
	<bean id="testBatch"
        class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
        <property name="targetObject" ref="testService" />
        <property name="targetMethod" value="startTheJon" />
        <property name="concurrent" value="false" /><!-- 指定最终封装出的任务是否有状态 -->
    </bean>
	 <!--扫描的频率每隔5分钟执行一次 以隔repeatInterval时间的方式进行提交 -->
    <bean id="testTaskBatch" class="org.springframework.scheduling.quartz.SimpleTriggerFactoryBean">
        <property name="startDelay" value="6000"/><!-- 服务启动6秒后执行 -->
        <property name="repeatInterval" value="5000"/>  <!-- 每隔5秒执行一次 -->
       <property name="jobDetail" ref="testBatch"/>
    </bean>
    <!--启动Bean-->
    <bean id="schedulerFactory" lazy-init="false" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
        <property name="triggers">
            <list>
             		 <ref bean="testTaskBatch" />
            </list>
        </property>
    </bean>
     
</beans>

3,java代码
package com;

import java.util.Date;

public class TestService {
	public void startTheJon(){
		Date dd= new Date();
		System.out.println("时间:"+dd+"你妈喊你回家吃饭");
	}
}

发表评论
用户名: 匿名