@GetMapping: Difference between revisions
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
It may also contain a sub-path relative to the class-level base path, usually configured with [[@RequestMapping]]. | It may also contain a sub-path relative to the class-level base path, usually configured with [[@RequestMapping]]. | ||
=HTTP GET Semantics for REST Applications= | |||
{{Internal|REST_and_Hypermedia#GET|HTTP GET Semantics for REST Applications}} |
Revision as of 17:23, 12 March 2019
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.