Java Equivalent for ASP.NET MVC Areas

Areas in ASP.NET MVC are convenient for hacking a site into smaller, manageable components at a higher level than controllers. They are similar to mini MVC fragments in a web application.

Is there an equivalent concept in any Java MVC framework for ASP.NET domains?

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

+7
source share
4 answers

Try Spring MVC . It can satisfy your desire.

+2
source

Take a look at JSP Tiles and Velocity Templates. Tiles should be similar to Regions.

0
source

So Java EE does not provide an MVC solution, but there are many OpenSource projects that have created a solution that implements the MVC framework — try the latest versions of Spring and Struts.

0
source

Take a look at this web framework for java: playframework

0
source

All Articles