Package org.ocpsoft.rewrite.annotation
Annotation Type RequestAction
Adds an
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
}
}
- Author:
- Christian Kaltepoth