0

我在尝试...

  1. 我在 spring\batch\override\override.xml 中有批处理作业应用程序上下文配置
  2. 我在同一个项目上使用 web.xml、mvc-dispatcher-servlet.xml 进行了 Web 应用程序 servlet 配置
  3. 我的网络应用控制器运行成功
  4. 第一个预期的 Spring Integration 侦听器未启动
  5. 未加载批处理作业上下文
  6. 找不到批处理作业管理控制台页面 - 错误 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/" />
4

1 回答 1

0

只想知道您的 servlet-config.xml 有什么,如果它是应用程序上下文,则将其加载到上下文配置中

还要检查 spring bean 是否在服务器启动时初始化。

于 2013-09-26T07:18:57.260 回答