Main Dandelion filter that serves several purposes:
If the URLs pointing to your views always follow the same pattern, you can restrict the scope of application of this filter using a custom mapping, otherwise it is recommended to use /*
.
<!-- Dandelion filter definition and mapping --> <filter> <filter-name>dandelionFilter</filter-name> <filter-class>com.github.dandelion.core.web.DandelionFilter</filter-class> </filter> <filter-mapping> <filter-name>dandelionFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>@author Thibault Duchateau @author Romain Lespinasse @since 0.10.0
|
|