zoukankan      html  css  js  c++  java
  • 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>  
  • 相关阅读:
    【上线复盘】20190329-一个刷新数据的接口是如何导致几十万的订单数据错误
    VS------csc.exe已停止工作解决方法
    SQLServer------存储过程的使用
    SQLServer------聚集索引和非聚集索引的区别
    SQLServer------Sql Server性能优化辅助指标SET STATISTICS TIME ON和SET STATISTICS IO ON
    SQLServer------如何快速插入几万条测试数据
    SQLServer------如何让标识列重新开始计算
    SQLServer------begin tran/commit tran事务的使用方法
    SQLServer------插入数据时出现IDENTITY_INSERT错误
    Spring----Spring Boot Rest的使用方法
  • 原文地址:https://www.cnblogs.com/bjanzhuo/p/3576002.html
Copyright © 2011-2022 走看看