Partial Views of ASP.NET MVC in Java Spring MVC

I am wondering if Java Spring MVC has some implementation related to returning partial views like ASP.NET MVC? Basically, I want to return the HTML that is attached to the object and returns it in response to javascript to be added to dom, instead of creating html with jQuery (which is tedious). If not, I can go with jQuery templates.

+5
source share
1 answer

I did something like what you are asking. I basically created the view, but I did not associate it with the default layout. Thus, when loading a view, it contains only the HTML view, and not all additional functions from the default layout.

Sorry, I have no code for me.

+2
source

All Articles