@Inherited @Documented @Target(value=METHOD) @Retention(value=RUNTIME) public @interface RequestAction
Invoke to the current rule. This will invoke the annotated method if the rule matches.
@Join(path = "/user/{id}", to = "/user-details.html")
public class MyClass {
@RequestAction
public void loadData() {
// do something
}
}
Copyright © 2023 OCPsoft. All rights reserved.