Type of feature request
Extension of an existing feature
What kind of feature would you like to see
The @aspect Annotation allows for auto-creation of an AspectHandler during compile time. The advantage of this is, that you can inject any class dynamically into the method.
However, at the current point in time, this only supports singular parameters. It is missing:
- List of features
- Qualified features
- Properties
- Resolvables
Code Examples
public class MyHandler {
@Aspect(around = Example.class)
public Object handle(
ExecutionContext<Example> context,
@AwesomeQualifier MyService myService,
List<MyService> allServices),
@Resolve("${remote.port:5005}") int remotePort,
@Property(name = "my.test.property") String testProperty
{
// ...
}
}
Feature Design
No response
Type of feature request
Extension of an existing feature
What kind of feature would you like to see
The @aspect Annotation allows for auto-creation of an AspectHandler during compile time. The advantage of this is, that you can inject any class dynamically into the method.
However, at the current point in time, this only supports singular parameters. It is missing:
Code Examples
Feature Design
No response