是春季调度的新手。经过一些研究后,我发现它可以使用cron表达式完成。我在论坛上有两个问题。我需要安排一个任务每天晚上8点运行..是每天晚上8点以下的cron表达计划任务吗?
@Scheduled(cron="0 0 20 * * ?")
为了我的测试目的,我安排了一个每5分钟运行一次的任务。使用的表达式是
@Scheduled(cron="0 0/5 * * * *")
但是我观察到上面的表达会每隔5分钟触发我的方法。每隔5分钟,我的代码就运行两次。我不知道为什么它每5分钟运行两次。
以下是我的代码
@Scheduled(cron="0 0/5 * * * *")
public void demo(){
counter++;
System.out.println("Method "+new Date()+" counter "+counter); }
以上代码的输出是:
Method Thu Nov 05 22:26:00 IST 2015 counter 1
Method Thu Nov 05 22:26:00 IST 2015 counter 2
我的静态变量计数器表示此方法每5分钟调用两次。
我的spring.xml如下所示
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:task="http://www.springframework.org/schema/task"
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.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="com.controller" />
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/views/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
<bean id="Daily" class="com.scheduler.Daily">
</bean>
<mvc:resources mapping="/resources/**" location="/resources/"
cache-period="31556926"/>
<mvc:annotation-driven />
<task:annotation-driven />
</beans>
任何帮助表示感谢。