spring 定时任务

1:job
Java代码 复制代码 收藏代码
  1. @Component("apiWorker")
  2. public class ApiWorker


spring context 配置文件
Java代码 复制代码 收藏代码
  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"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:task="http://www.springframework.org/schema/task"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
  8. http://www.springframework.org/schema/task
  9. http://www.springframework.org/schema/task/spring-task-3.0.xsd">
  10. <!--<bean id="javaMailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">-->
  11. <!--<property name="host" value="192.168.95.47"/>-->
  12. <!--<property name="username" value="sohuopen@xxxx.com"/>-->
  13. <!--<property name="defaultEncoding" value="utf-8"></property>-->
  14. <!--<property name="javaMailProperties">-->
  15. <!--<props>-->
  16. <!--<prop key="mail.debug">false</prop>-->
  17. <!--</props>-->
  18. <!--</property>-->
  19. <!--</bean>-->
  20. <context:component-scan base-package="com.sohu.twitter"/>
  21. <task:annotation-driven/>
  22. <import resource="classpath:open-dao-beans.xml"/>
  23. </beans>


task timer配置文件:
Java代码 复制代码 收藏代码
  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"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:aop="http://www.springframework.org/schema/aop"
  6. xmlns:task="http://www.springframework.org/schema/task"
  7. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  8. http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
  9. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
  10. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
  11. http://www.springframework.org/schema/task
  12. http://www.springframework.org/schema/task/spring-task-3.0.xsd">
  13. <task:scheduled-tasks>
  14. <task:scheduled ref="apiWorker" method="doWork" cron="0 30 5 * * ?"/>
  15. </task:scheduled-tasks>
  16. <import resource="classpath:applicationContext-open-core.xml"/>
  17. </beans>  
原文地址:https://www.cnblogs.com/bjanzhuo/p/3576002.html