将Spring Batch Admin集成到现有应用程序中

时间:2011-06-22 10:45:16

标签: spring spring-mvc spring-batch spring-batch-admin

我有一个使用Spring Batch和Spring MVC的应用程序。我能够将Spring Batch Admin作为一个单独的战争部署,并将其用于我的应用程序使用的同一个DB,尽管我想将它集成到我自己的应用程序中,也可能修改一些视图。

有没有一种简单的方法可以做到这一点,还是我必须分叉并从那里开始?

4 个答案:

答案 0 :(得分:14)

根据这个thread显然有一种简单的方法;

  • web.xml中为批处理管理员定义DispatcherServlet:

    <servlet>
        <servlet-name>Batch Servlet</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</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    
    <servlet-mapping>
        <servlet-name>Batch Servlet</servlet-name>
        <url-pattern>/batch/*</url-pattern>
    </servlet-mapping>
    
  • 在根appContext中添加resourceService的覆盖:

    <bean id="resourceService"
    class="org.springframework.batch.admin.web.resources.DefaultResourceService">
        <property name="servletPath" value="/batch" />
    </bean> 
    
  • 修改spring-batch-admin-resources-1.2.0-RELEASE.jar中的standard.ftl以反映网址:

    <#assign url><@spring.url relativeUrl="${servletPath}/resources/styles/main.css"/></#assign>

答案 1 :(得分:7)

如果您使用Spring-batch-admin 1.2.1,则无需修改standard.ftl文件。您应该添加来自servlet-config.xml的{​​{1}}和webapp-config.xml个文件。以下是步骤(再次重复):

org/springframework/batch/admin/web/resources

<servlet> <servlet-name>Batch Servlet</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,classpath*:/org/springframework/batch/admin/web/resources/webapp-config.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet>

中添加resourceService bean
applicationContext

答案 2 :(得分:4)

我已将Spring Batch管理员嵌入到我的应用程序中,该应用程序打包为jar文件。我这样做是因为这个应用程序已经存在并且我使用J2SE运行它而不是像Tomcat这样的servlet容器。此外,我不太喜欢为批处理作业部署Web服务器/ servlet容器的想法。 Spring Batch Admin应用程序是一个很好的参考实现,几乎所有接口都可以通过Spring DI使用自定义类替换。此外,所有UI都是模板驱动的。 因此,我提取了相关资源并使用我的应用程序启动的嵌入式Jetty服务器运行控制台。实际上,这已经将应用程序从servlet容器中的内容转移到应用程序内的servlet容器。

屏幕截图位于:https://github.com/regunathb/Trooper/wiki/Trooper-Batch-Web-Console

源,配置资源等在这里:https://github.com/regunathb/Trooper/tree/master/batch-core(检查/ src / main / resources / WEB-INF文件夹中的Web相关配置和资源)

答案 3 :(得分:3)

而不是像这样引用spring批处理管理XML文件:

<param-value>classpath*:/org/springframework/batch/admin/web/resources/servlet-config.xml</param-value>

您也可以引用自己的XML文件

<param-value>classpath:eregister-spring-admin-servlet.xml</param-value>

包含这样的想法:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">

<import resource="classpath*:/META-INF/spring/batch/servlet/resources/*.xml" />
<import resource="classpath*:/META-INF/spring/batch/servlet/manager/*.xml" />
<import resource="classpath*:/META-INF/spring/batch/servlet/override/*.xml" />
<import resource="classpath*:/META-INF/spring/batch/bootstrap/**/*.xml" />
<import resource="classpath*:/META-INF/spring/batch/override/**/*.xml" />

<!-- Override de standard locatie van spring batch admin resources -->
<bean id="resourceService" class="org.springframework.batch.admin.web.resources.DefaultResourceService">
    <property name="servletPath" value="/batch" />
</bean>

<bean id="parameterUnpackerFilter" class="org.springframework.batch.admin.web.filter.ParameterUnpackerFilter">
    <property name="prefix" value="unpack_"/>
    <property name="putEmptyParamsInPath" value="true"/>
</bean>

</beans>