It would be good to support @Attribute annotation to declaratively inject the attributes in ServiceRequestContext.attr(key) into annotated services.
class MyService {
@Get("/")
public String hello(@Attribute("myAttribute") String myAttribute, ...) {
...
}
}
It would be good to support
@Attributeannotation to declaratively inject the attributes inServiceRequestContext.attr(key)into annotated services.