Quartz job not firing after moving war to ear
Posted
by Eqbal
on Stack Overflow
See other posts from Stack Overflow
or by Eqbal
Published on 2010-03-30T21:47:43Z
Indexed on
2010/03/30
21:53 UTC
Read the original article
Hit count: 310
quartz-scheduler
I used to have a web app deployed as a war file in weblogic. I moved the war into an ear file and redeployed. But now it seems a configured quartz job is no longer firing. Not sure if its not finding the properties file anymore. Its defined like this in the servlet config (web.xml)
<init-param>
<param-name>config-file</param-name>
<param-value>properties/quartz.properties</param-value>
</init-param>
© Stack Overflow or respective owner