spring-task使用注意事项 记录spring-task使用过程中遇到的问题 28 Jul 2015 in Work Less than 1 minute read 在spring的主配置和spring-mvc配置中添加task。 ##使用主配置文件 task相关配置内容如下: <context:component-scan base-package="com.yizhenmoney.damocles.crs.scheduler"/> 业务逻辑代码 @Component @EnableScheduling public class AgeScheduler { @Scheduled(cron = "0 0 0 1 1 ?") public void execute() { } } 注: 需要在类上添加@EnableScheduling注解; 如果spring的主配置中配置了default-lazy-init="true"属性,需要在task的类上添加@Lazy(value=false)使其启动时创建对象。 ##使用mvc配置文件 配置添加如下内容: xmlns:task="http://www.springframework.org/schema/task" http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.2.xsd <context:component-scan base-package="com.yizhenmoney.damocles.crs.controller,com.yizhenmoney.damocles.crs.scheduler"/> <task:annotation-driven/> <task:executor id="myExecutor" pool-size="5"/> <task:scheduler id="myScheduler" pool-size="10"/> 业务逻辑代码 @Component public class AgeScheduler { @Scheduled(cron = "0 0 0 1 1 ?") public void execute() { } } <connector implementation="org.eclipse.jetty.server.bio.SocketConnector"/> <connector implementation="org.eclipse.jetty.server.ssl.SslSocketConnector"/> Tagged with work