@RestMethod(path)
The {@link oajr.annotation.RestMethod#path() @RestMethod(path)} annotation allows
you to define URL path patterns to match against.
These patterns can contain variables of the form "{xxx}" that can be passed in directly to the
Java methods as extra parameters.
In the following example, 3 separate GET request handlers are defined with different path patterns.
Note how the variables are passed in as additional arguments on the method, and how those arguments are
automatically converted to the specified class type...
// Default method
@RestMethod(name=GET, path="/*")
public void doGetDefault() {
...
}
// Method with path pattern
@RestMethod(name=GET, path="/xxx")
public void doGetNoArgs(...) {
...
}
// Method with path pattern with arguments
@RestMethod(name=GET, path="/xxx/{foo}/{bar}/{baz}/{bing}")
public void doGetWithArgs(@Path("foo") String foo, @Path("bar") int bar, @Path("baz") MyEnum baz, @Path("bing") UUID bing) {
...
}
By default, path patterns are matched using a best-match heuristic.
When overlaps occur, URLs are matched from most-specific to most-general order:
// Try first
@RestMethod(name=GET, path="/foo/bar")
public void method1() {
...
}
// Try second
@RestMethod(name=GET, path="/foo/{bar}")
public void method2(...) {
...
}
// Try third
@RestMethod(name=GET, path="/foo/*")
public void method3(...) {
...
}
// Try last
@RestMethod(name=GET, path="/*")
public void method4(...) {
...
}
The match heuristic behavior can be overridden by the
{@link oajr.annotation.RestMethod#priority() @RestMethod(priority)} annotation
property.
However, in practice this is almost never needed.
Paths that end with "/*" will do a prefix match on the incoming URL.
Any remainder after the match can be accessed through
{@link oajr.RequestPath#getRemainder()} or parameters with the
@Path("/*") annotation.
On the other hand, paths that don't end with "/*" (e.g. "/" or "/foo") will
require an exact URL match, and if any remainder exists, a 404 (not found) error will be thrown.
The following example shows the distinction.
@RestMethod(name=GET, path="/*")
public void doGet(@Path("/*") String remainder) {
// URL path pattern can have remainder accessible through req.getRemainder().
}
@RestMethod(name=PUT, path="/")
public void doPut() {
// URL path pattern must match exactly and will cause a 404 error if a remainder exists.
}
Annotations are provided for easy access to URL parameters with automatic conversion to any {@doc PojoCategories parsable} type.
For example, the following example can process the URL "/urlWithParams?foo=foo&bar=[1,2,3]&baz=067e6162-3b6f-4ae2-a171-2470b63dff00"...
// Example GET request with access to query parameters
@RestMethod(name=GET, path="/urlWithParams")
public String doGetWithParams(@Query("foo") String foo, @Query("bar") int bar, @Query("baz") UUID baz) throws Exception {
return "GET /urlWithParams?foo="+foo+"&bar="+bar+"&baz="+baz;
}
- {@link oajr.RestContext#REST_path}
- {@link oaj.http.annotation.Path}
- {@link oajr.RequestPath}