Java Equivalent for ASP.NET MVC Areas

Areas, in ASP.NET MVC, are handy for breaking a site into smaller, manageable components at a higher level than controllers. They are like mini-MVC pieces within a web application.

Is there an equivalent concept in any Java MVC framework to ASP.NET Areas?

If not, are there any suggestions on best practices when emulating their functionality in a Java MVC framework?


Try Spring MVC. This may be fulfill your wish.


Look at JSP Tiles and Velocity Templates. Tiles should look similiar to Areas.


看看这个Web框架的Java:playframework

链接地址: http://www.djcxy.com/p/61860.html

上一篇: Emacs:将CSV导入组织

下一篇: Java MVC区域的Java等价物