java jsp struts2 servlet-filters tuckey-urlrewrite-filter

java - No se puede encontrar el archivo urlrewrite conf en/WEB-INF/urlrewrite.xml



jsp struts2 (1)

Podrías cambiar el archivo conf en params. Esto podría agregarse al filtro conf.

<!-- if you need to the conf file path can be changed it is specified as a path relative to the root of your context (default /WEB-INF/urlrewrite.xml) --> <init-param> <param-name>confPath</param-name> <param-value>/WEB-INF/urlrewrite.xml</param-value> </init-param>

Estoy implementando la funcionalidad de URL Rewrite y he incluido todo lo que es necesario para ello en mi proyecto, es decir, urlrewritefilter-4.0.3.jar en WEB-INF/lib y urlrewrite.xml en WEB-INF y urlrewrite.xml añadido lo siguiente en web.xml

<filter> <filter-name>UrlRewriteFilter</filter-name> <filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class> </filter> <filter-mapping> <filter-name>UrlRewriteFilter</filter-name> <url-pattern>/*</url-pattern> <dispatcher>REQUEST</dispatcher> <dispatcher>FORWARD</dispatcher> </filter-mapping>

Pero recibo el siguiente error,

no se puede encontrar el archivo urlrewrite conf en /WEB-INF/urlrewrite.xml

Por favor, dame sugerencias sobre qué se puede hacer para resolver esto.