Reading Attributes
The most basic way is to use httpRequest.getAttribute, but Hasor provides the @AttributeParameter annotation.
@MappingTo("/helloAction.do")
public class HelloAction {
@Any
public void execute(@AttributeParameter("value") boolean value) {
...
}
}