如何在spring 2.5应用程序中停止加载上下文两次?
在web.xml中,我在加载基于弹簧的应用程序时进行了以下配置设置,我还使用了" CRON"调度程序根据" CRON"来安排通知邮件。表达式值,但通知触发两次,但简单触发的情况相同,它工作正常。
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>dummyProject</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
请在web.xml中找到上述设置,如果有人知道,请告诉我解决方案