我在尝试...
- 我在 spring\batch\override\override.xml 中有批处理作业应用程序上下文配置
- 我在同一个项目上使用 web.xml、mvc-dispatcher-servlet.xml 进行了 Web 应用程序 servlet 配置
- 我的网络应用控制器运行成功
- 第一个预期的 Spring Integration 侦听器未启动
- 未加载批处理作业上下文
- 找不到批处理作业管理控制台页面 - 错误 404
为了更新作业管理控制台和集成侦听器,在创建与 Web-Servlet 上下文项目相同的项目之前,使用现有的 datauploadJobs.xml 设置运行。相同的位置是:META-INF\spring\batch\jobs\datauploadJobs.xml。web.xml 中的那个时间 mvc-dispatcher-servlet.xml 在 context 参数中不存在。
请帮助.....最新设置的详细信息见下文:
web.xml(仅相关部分)
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath*:/org/springframework/batch/admin/web/resources/webapp-config.xml
</param-value>
</context-param>
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath*:/org/springframework/batch/admin/web/resources/servlet-config.xml,
/WEB-INF/mvc-dispatcher-servlet.xml
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
==================================================== ================================ mvc-dispatcher-servlet.xml
<context:annotation-config />
<context:component-scan base-package="com.tda.institutional.iRebalEnt" />
<mvc:annotation-driven />
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/pages/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
<mvc:resources mapping="/resources/**" location="/,/resources/,/WEB-INF/" />