@Retention(value=RUNTIME) @Target(value=METHOD) public @interface InputConfig
Annotation usage:
The InputConfig annotation can be applied at method level.Annotation parameters:
Parameter | Required | Default | Notes |
---|---|---|---|
methodName | no | execute this method if specific | |
resultName | no | return this result if methodName not specific |
Example code:
public class SampleAction extends ActionSupport { public void isValid() throws ValidationException { // validate model object, throw exception if failed } @InputConfig(methodName="input") public String execute() { // perform action return SUCCESS; } public String input() { // perform some data filling return INPUT; } }
Modifier and Type | Optional Element and Description |
---|---|
String |
methodName |
String |
resultName |
Copyright © 2000–2020 Apache Software Foundation. All rights reserved.