views:

18

answers:

1

I want to use stripes tag library specifically layout features. My rest of the project is handled by spring mvc.

Is this possible to use stripes without adding any stripes filter?

A: 

In the web.xml you can configure the Stripes DispatcherServlet with an url-pattern so that Stripes front controller will only respond to certain URL's. Another option is, to use separate context-paths for Stripes and Spring MVC.

Kdeveloper