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