spring整合quartz时提示表或视图不存在错误解决方法

        今天在开发时,使用SSH框架整合Quartz-1.8.6,启动时,报如下错误:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'startQuertz' defined in file [D:\weblogic12c\user_projects\domains\orcl\autodeploy\pageview\WEB-INF\classes\applicationContext-app-ioc.xml]: Invocation of init method failed; nested exception is org.quartz.SchedulerConfigException: Failure occured during job recovery. [See nested exception: org.quartz.impl.jdbcjobstore.LockException: Failure obtaining db row lock: ORA-00942: 表或视图不存在

 [See nested exception: java.sql.SQLSyntaxErrorException: ORA-00942: 表或视图不存在

]]

        上网查询原因,查到了这篇文章Spring配置Quartz出错解决 ,上面说SchedulerFactoryBean中的数据源属性名也叫datasource,数据源名称定义为dataSource后,Quartz就将dataSource注入,同时认为应该从数据库中查询任务。所以出现上面的错误。

将数据源名称修改成其他后,并修改引用后,问题解决。

        不知道quartz-2.x还有没有这个问题,等下次再试试吧。


     


你可能感兴趣的:(spring整合quartz时提示表或视图不存在错误解决方法)