Annotation Type Post


@Target(METHOD) @Retention(RUNTIME) public @interface Post
Marks a method that handles HTTP POST requests.
{@code

  @Post
  void save(Customer customer) {
      ...
  }
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description