pion
pion

Reputation: 3613

View part of Spring MVC

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

Answers (1)

Ryan Stewart
Ryan Stewart

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

Related Questions