Spring Batch作业上下文未加载,Spring Integration不与Web Context一起开始

时间:2013-09-26 03:28:43

标签: spring-mvc spring-batch spring-integration

我正在努力......

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

1 个答案:

答案 0 :(得分:0)

只想知道你的servlet-config.xml有什么,如果它是应用程序上下文,那么在上下文配置中加载它

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