Hi all,
I would like to match everything but *.xhtml
. I have a servlet listening to *.xhtml
and I want another servlet to catch everything else. If I map the Faces Servlet to everything (*
), it bombs out when handling icons, stylesheets, and everything that is not a faces request.
This is what I've been trying unsuccessfully.
Pattern inverseFacesUrlPattern = Pattern.compile(".*(^(\\.xhtml))");
Any ideas?
Thanks,
Walter