@GetMapping: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 6: Line 6:


The annotation indicates that the annotated method handles GET request for the path provided as argument of the annotation.
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]].

Revision as of 04:19, 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.