Using IoC
Fields of request-handler classes can be injected through dependency injection:
@MappingTo("/helloAction.do")
public class HelloAction {
@Inject
private PayService payService
@Any
public void execute() {
...
}
}
tip
For dependency injection details, see the Dependency Injection (IoC) section.