定时任务

1.web工程中applicationContext.xml添加


             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:task="http://www.springframework.org/schema/task"
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.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-4.2.xsd">
        
        
          
            
            
        
 

 

2.web.xml添加spring容器监听



 
    
        contextConfigLocation
        classpath:applicationContext.xml
    

    
    
        org.springframework.web.context.ContextLoaderListener
    

  

 

3.定义定时任务类

package com.sundy.task;

public class MyTask {
    public void task(){
        System.out.println("定时任务...");
    }
}
 

你可能感兴趣的:(定时任务)