Created
January 20, 2013 09:20
-
-
Save rei999/4577439 to your computer and use it in GitHub Desktop.
spring sitemesh velocity
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<filter> | |
<filter-name>sitemesh</filter-name> | |
<filter-class>com.opensymphony.sitemesh.webapp.SiteMeshFilter</filter-class> | |
</filter> | |
<filter-mapping> | |
<filter-name>sitemesh</filter-name> | |
<url-pattern>/*</url-pattern> | |
<dispatcher>FORWARD</dispatcher> | |
<dispatcher>REQUEST</dispatcher> | |
<dispatcher>INCLUDE</dispatcher> | |
</filter-mapping> | |
<servlet> | |
<servlet-name>sitemesh-velocity</servlet-name> | |
<servlet-class>com.opensymphony.module.sitemesh.velocity.VelocityDecoratorServlet</servlet-class> | |
</servlet> | |
<servlet-mapping> | |
<servlet-name>sitemesh-velocity</servlet-name> | |
<url-pattern>*.vm</url-pattern> | |
</servlet-mapping> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment