Если вы используете Spring-batch-admin 1.2.1
, вам не нужно изменять standard.ftl
файл. И вы должны добавить файлы servlet-config.xml
и 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
боб в ваш applicationContext
:
<bean id="resourceService"
class="org.springframework.batch.admin.web.resources.DefaultResourceService">
<property name="servletPath" value="/batch" />
</bean>