1

カスタム アクション マッパーでカスタム グローバル結果を返すにはどうすればよいですか。

public class MyCustomActionMapper implements ActionMapper {

  public ActionMapping getMapping(HttpServletRequest request, 
                                  ConfigurationManager configManager) {
    ....
    ....
    return ????
  }
}
4

2 に答える 2

0

ActionMapping getMapping(javax.servlet.http.HttpServletRequest リクエスト、ConfigurationManager configManager)

Expose the ActionMapping for the current request

Parameters:
    request - The servlet request
    configManager - The current configuration manager 
Returns:
    The appropriate action mapping String or null if mapping cannot be determined
于 2012-12-24T09:38:42.753 に答える