What is the difference between a Spring MVC method and Spring MVC Rest Method?
Asked
Active
Viewed 1,978 times
1
-
1Basically nothing, they are both request handling methods. – M. Deinum Jul 23 '15 at 07:49
1 Answers
0
Spring MVC is part of Spring framework to make a Model-View-Controller. When you use it you have the choice to handle RESTful url or not.
Here is a good post to understand what is a RESTful service : https://stackoverflow.com/a/671132/3425744
Here you can find examples to make RESTful service with Spring MVC :

Community
- 1
- 1

Thomas Betous
- 4,633
- 2
- 24
- 45