ActionProxy錛?br />
public class ActionProxy implements Action {
private DispacherAction dispacherAction = new DispacherAction();
public String execute() {
String result ;
System.out.println("begin ActionProxy TODO somethin.");
result = dispacherAction.execute() ;
System.out.println("end ActionProxy TODO somethin.");
return result;
}
}