@GetMapping: Difference between revisions
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
=Internal= | =Internal= | ||
* [[Spring MVC Concepts]] | * [[#.40GetMapping|Spring MVC Concepts]] | ||
=Overview= | =Overview= |
Revision as of 04:20, 12 October 2018
Internal
Overview
The annotation indicates that the annotated method handles GET request for the path provided as argument of the annotation.
It may also contain a sub-path relative to the class-level base path, usually configured with @RequestMapping.