问题描述
- spring整合quartz定时任务报错,请大神们解救
-
web.xml中的配置spring_mvc
org.springframework.web.servlet.DispatcherServletcontextConfigLocation
classpath:applicationContextspring_mvc
/applicationContext.xml的配置
<!-- 要调用的工作类 --><!-- 定义调用对象和调用对象的方法 -->
<!-- 调用的类 -->
<!-- 调用类中的方法 -->
work
<!-- 定义触发时间 -->
<!-- cron表达式 -->
0 */1 * * * ?
<!-- 总管理类 如果将lazy-init='false'那么容器启动就会执行调度程序 -->
</property> </bean>
工作类的代码
public class QuartzJob {public void work() { System.out.println("Quartz的任务调度!!!"); }
}
测试类的代码
public class Main {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
//如果配置文件中将startQuertz bean的lazy-init设置为false 则不用实例化
//context.getBean("startQuertz");
}控制台打印的错误信息
Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'startQuertz' defined in class path resource [applicationContext.xml]: Instantiation of bean failed; nested exception is java.lang.NoClassDefFoundError: org/quartz/spi/JobFactoryCaused by: java.lang.NoClassDefFoundError: org/quartz/spi/JobFactory