spring quartz定时任务
配置quartz 在spring中需要三个jar包: quartz-1.8.5.jar、commons-collections-3.2.1.jar、commons-logging-1.1.jar 首先要配置我们的spring.xml xmlns 多加下面的内容、 [html] view plain copy xmlns:task = "http://www.springframework.org/schema/task" 然后xsi:schemaLocation多加下面的内容、 [html] view plain copy http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.1.xsd 最后是我们的task任务扫描注解 [html] view plain copy < task:annotation-driven /> 我的配置扫描位置是: [html] view plain copy < context:annotation-config /> < bean class = "org.springframework.beans.factory.annotation