开发者

Multiple View resolvers in spring mvc

I want to use multiple view resolvers 开发者_开发百科in my web app based on spring mvc

Can anyone tell me how do I achieve that.

I want to use both JSP and freemarker in my app. Please suggest some approaches or links or examples..

All help is appreciated.

Adhir


You can add as many view resolvers as you want. You can specify the order in which the view resolvers need to be checked. Spring will take the first view resolver which can successfully resolve the view.

ex: Since you have JSP and freemarker add the view resolvers for both and give the order property 1 for JSP and 2 for freemarker. If your view is /freemarker/hello.ftl then the JSP resoplver will fails since it will not be able to find th file /freemarker/hello.ftl, then the freemarker resolver will handle this view. But if the JSP resolver is able to find the file and resolve it then freemaker resolver will not be used to resolve that view

Refer: Chaining ViewResolvers

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜