Annotation Type HttpPatch


  • @Target(METHOD)
    @Retention(RUNTIME)
    public @interface HttpPatch
    Annotation for mapping HTTP PATCH requests onto specific handler methods.

    Specifically, @HttpPatch is a composed annotation that acts as a shortcut for @HttpRoute(method = HttpMethodWrapper.PATCH).

    Since:
    1.1
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      java.lang.String[] value
      Returns the path pattern of this route.
    • Element Detail

      • value

        java.lang.String[] value
        Returns the path pattern of this route.
        Returns:
        the path pattern of this route.
        Default:
        {}