appconfig-task.xml 1.66 KB
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
	xmlns:task="http://www.springframework.org/schema/task" xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 	http://www.springframework.org/schema/beans/spring-beans-3.0.xsd	http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd      http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd      
	http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd     
	 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd">
	<!-- 定时器开关 -->
	<task:annotation-driven />
	<bean id="weChat" class="com.phxl.modules.wechat.utils.WeChatUtils"></bean>
	<task:scheduled-tasks>		
	    <!-- 
		         每隔5秒执行一次:*/5 * * * * ?
	                     每隔1分钟执行一次:0 */1 * * * ?
	                     每天23点执行一次:0 0 23 * * ?
	                     每天凌晨1点执行一次:0 0 1 * * ?
	                     每天凌晨2点执行一次:0 0 2 * * ?
	     -->
		<task:scheduled ref="weChat" method="getAccessToken" cron="0 */118 * * * ?" />
	</task:scheduled-tasks>	   
	<context:component-scan base-package="com.phxl.modules" />    
	

	
	
	
</beans>