Annotation Type HttpGet
-
@Target(METHOD) @Retention(RUNTIME) public @interface HttpGetAnnotation for mapping HTTPGETrequests onto specific handler methods.Specifically,
@HttpGetis a composed annotation that acts as a shortcut for@HttpRoute(method = HttpMethodWrapper.GET).- Since:
- 1.1
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.String[]valueReturns the path pattern of this route.
-