Reputation: 3613
I am reading the Developing a Spring Framework MVC application step-by-step specifically the Create the View section.
It uses hello.jsp.
I am new with this. I assume that we can use the View part any client framework like GWT, jQueryUI, etc. without using JSP.
Correct?
Thanks in advance for your help.
Upvotes: 1
Views: 288
Reputation: 128829
Spring integrates with several view technologies out of the box, and it's built to be extensible. Check out "Resolving views with the ViewResolver interface" for an overview and list of common view implementations. To use some view technology, you have to have a ViewResolver implementation for it.
Upvotes: 1