Spring 简单计划任务设置

applicationContext.xml 

 <bean id="Z" class="com.sxd.test.Z" />
 <task:scheduled-tasks>
    <task:scheduled ref="Z" method="test0" cron="0 0/1 * * * ?" />
 </task:scheduled-tasks>

需引入

 xmlns:task="http://www.springframework.org/schema/task"
 xsi:schemaLocation ="http://www.springframework.org/schema/task
                      http://www.springframework.org/schema/task/spring-task-3.0.xsd"

你可能感兴趣的:(Spring 简单计划任务设置)