采用以下示例。
我有资源
public class HelloWorldResource extends ServerResource {
@Get
public String represent(String arg) {
return "hello, world (from the cloud!)" + arg;
}
}
由
映射router.attach("/hi/{message}", HelloWorldResource.class);
是否可以配置路由,以便访问/ hi / somestuffhere将使表示方法中的arg参数重新填充?
答案 0 :(得分:2)
试试这个:
String msg = (String) getRequest().getAttributes().get("message");
您可以将其置于重写的doInit()方法中,以便自动为您对此资源的所有请求发生此事。