关于quartz重复执行两次的问题

通过修改tomcat下的server.xml文件解决了这个问题
<Host name="localhost" debug="0" appBase=""
       unpackWARs="true" autoDeploy="true">

<Context path="" docBase="lenovomobilealarm" debug="0"/>

这里appBase为空,quartz就会执行一次了,否则会执行两次。
同时,访问地址也变了:
原来用
http://localhost:8080/lenovomobilealarm/index.jsp
现在用
http://localhost:8080/index.jsp

其实还是希望能按照原来的地址访问,因为tomcat下不光会有这一个程序,但是现在只能这样了,看看以后会有什么好的解决方法。各位多给提提意见!

你可能感兴趣的:(tomcat,xml,jsp,quartz)