Annotation Interface DeleteMapping


@Retention(RUNTIME) @RequestMapping(method=DELETE) @Target({METHOD,TYPE}) public @interface DeleteMapping
Annotation for mapping HTTP DELETE requests onto specific handler methods.

Specifically, @DeleteMapping is a composed annotation that acts as a shortcut for @RequestMapping(method = HttpMethod.DELETE).

作者:
TODAY 2020/12/8 21:47