Package org.ocpsoft.rewrite.annotation
Annotation Type ForwardTo
Adds a Forward operation to the current rule. This operation will perform a Servlet forward to the specified
path.
@PathPattern("/login")
@Forward("/login-page.html")
public class MyClass {
}
- Author:
- Christian Kaltepoth
-
Required Element Summary
Required Elements
-
Element Details
-
value
String valueThe path to forward the request to. The path is relative to the context path.
-