spring 定时任务

1:job
Java代码 复制代码 收藏代码
  1. @Component("apiWorker")
  2. public class ApiWorker
@Component("apiWorker")
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>
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       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-3.0.xsd

       http://www.springframework.org/schema/task
       http://www.springframework.org/schema/task/spring-task-3.0.xsd">


    <!--<bean id="javaMailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">-->
        <!--<property name="host" value="192.168.95.47"/>-->
        <!--<property name="username" value="sohuopen@xxxx.com"/>-->
        <!--<property name="defaultEncoding" value="utf-8"></property>-->
        <!--<property name="javaMailProperties">-->
            <!--<props>-->
                <!--<prop key="mail.debug">false</prop>-->
            <!--</props>-->
        <!--</property>-->
    <!--</bean>-->
    <context:component-scan base-package="com.sohu.twitter"/>
    <task:annotation-driven/>

    <import resource="classpath:open-dao-beans.xml"/>


</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>  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值