Hi Everyone,

I am a complete newbie to Spring Batch Admin. I integrated spring batch admin 1.2.1 sources with my database and able to run the application independently. Now I want to integrate it with my existing web application which using is spring 3.0.2. I followed the instructions mentioned in the reference doc, but no luck. I am getting below error:

cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'mvc:resources'.


Steps I followed:
1) Added related jars.
2) Added data source properties.
3) Added index.jsp in web folder.
4) Added below tag in web.xml:
<servlet>
<servlet-name>Batch Servlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherSe rvlet</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>
</servlet>

<servlet-mapping>
<servlet-name>Batch Servlet</servlet-name>
<url-pattern>/batch/*</url-pattern>
</servlet-mapping>


What I am doing wrong? Can anyone help me to get around this issue?

Thanks,
Mangapathi