我正在努力......
对于更新,在与Web-Servlet上下文项目创建相同的项目之前,Job Admin Console和Integration侦听器正在使用现有的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-调度-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/" />
答案 0 :(得分:0)
只想知道你的servlet-config.xml有什么,如果它是应用程序上下文,那么在上下文配置中加载它
还要检查是否在服务器启动时初始化了spring bean。