spring整合Quartz如果在tomcat的Server.xml中存在Context内容,会导致quartz被调用两次。
解决方案:
修改tomcat配置:
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false">其中修改:appBase=“”,
对于context中的内容也进行修改(docBase也可以写绝对路径):
<Context path="" docBase="webapps/test" debug="0" reloadable="true"/>
另外,对于Quartz的配置需要使用单独的配置文件applicationContext-quartz.xml,对于原来的内容,可以保留在applicationContext-common.xml中。
经过上面的修改,在Linux下quartz被调用两次的bug解决,(已测试通过)。