1

What is the difference between a Spring MVC method and Spring MVC Rest Method?

giannis christofakis
  • 8,201
  • 4
  • 54
  • 65

1 Answers1

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