springMVC中实现定时器可在Controller中配置定时器

本章讲解springMVC中实现定时器,此时基于上一章eclipse搭建springmvc项目框架

文件结构


定时器所需jar

aopalliance-1.0.jar

步骤

1、springMVC-servlet.xml

  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"  
  4.     xmlns:context="http://www.springframework.org/schema/context"  
  5.     xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:task="http://www.springframework.org/schema/task"  
  6.     xsi:schemaLocation="    
  7.     http://www.springframework.org/schema/beans     
  8.     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd    
  9.     http://www.springframework.org/schema/context    
  10.     http://www.springframework.org/schema/context/spring-context-3.0.xsd    
  11.     http://www.springframework.org/schema/mvc    
  12.     http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd    
  13.     http://www.springframework.org/schema/task     
  14.     http://www.springframework.org/schema/task/spring-task-3.0.xsd">  
  15.     <!-- 默认扫描的包路径 -->  
  16.     <context:component-scan base-package="*" />  
  17.   
  18.     <!-- 添加注解驱动 -->  
  19.     <mvc:annotation-driven />  
  20.   
  21.     <!-- 定义跳转的文件的前后缀 -->  
  22.     <bean id="viewResolver"  
  23.         class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
  24.         <property name="prefix" value="/WEB-INF/views/" />  
  25.         <property name="suffix" value=".jsp" />  
  26.     </bean>  
  27.   
  28.     <task:executor id="executor" pool-size="5" />  
  29.     <task:scheduler id="schedule" pool-size="10" />  
  30.     <task:annotation-driven executor="executor"  
  31.     scheduler="schedule" />  
  32.   
  33. </beans>  

注:添加了task

2、VendorTask.java

  1. package net.csdn.blog.springmvc.timer;  
  2.   
  3. import org.springframework.scheduling.annotation.Scheduled;  
  4. import org.springframework.stereotype.Component;  
  5.   
  6. @Component  
  7. public class VendorTask {  
  8.   
  9.     // private static Logger log = Logger.getLogger(VendorTask.class);  
  10.   
  11.     @Scheduled(fixedDelay = 5000)  
  12.     public void doSomethingWithDelay() {  
  13.         System.out.println("I'm doing with delay now!");  
  14.     }  
  15.   
  16.     @Scheduled(fixedRate = 5000)  
  17.     public void doSomethingWithRate() {  
  18.         System.out.println("I'm doing with rate now!");  
  19.     }  
  20.   
  21.     @Scheduled(cron = "0/5 * * ? * *")  
  22.     public void doSomethingWithCron() {  
  23.         System.out.println("I'm doing with cron now!");  
  24.     }  
  25.   
  26. }  

注:cron效果为服务器启动之后每过5s钟执行一次,具体的写法可参考Spring定时器配置方式

3、效果



-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

@Component
@Controller
@RequestMapping(value="/serverinfo")
public class ServerInfoController extends BaseController implements ServletContextListener{

   @Scheduled(fixedDelay = 50000)  
    public void doSomethingWithDelay()  {

   

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值