54 lines
1.3 KiB
XML
54 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
|
|
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
|
|
|
|
<servlet>
|
|
<servlet-name>yacos</servlet-name>
|
|
<servlet-class>
|
|
org.springframework.web.servlet.DispatcherServlet
|
|
</servlet-class>
|
|
<load-on-startup>1</load-on-startup>
|
|
</servlet>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>yacos</servlet-name>
|
|
<url-pattern>*.htm</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
<welcome-file-list>
|
|
<welcome-file>index.jsp</welcome-file>
|
|
</welcome-file-list>
|
|
|
|
<jsp-config>
|
|
<taglib>
|
|
<taglib-uri>/spring</taglib-uri>
|
|
<taglib-location>
|
|
/WEB-INF/tld/spring-form.tld
|
|
</taglib-location>
|
|
</taglib>
|
|
</jsp-config>
|
|
|
|
<!-- Servlet for DWR mapping -->
|
|
<!-- <servlet-mapping>
|
|
<servlet-name>yacos</servlet-name>
|
|
<url-pattern>/dwr/*</url-pattern>
|
|
</servlet-mapping> -->
|
|
|
|
<!-- SiteMesh Integration declaration Start -->
|
|
<filter>
|
|
<filter-name>sitemesh</filter-name>
|
|
<filter-class>
|
|
com.opensymphony.module.sitemesh.filter.PageFilter
|
|
</filter-class>
|
|
</filter>
|
|
|
|
<filter-mapping>
|
|
<filter-name>sitemesh</filter-name>
|
|
<url-pattern>/*</url-pattern>
|
|
</filter-mapping>
|
|
<!-- SiteMesh Integration declaration End -->
|
|
|
|
</web-app> |