Changes between Version 22 and Version 23 of UTGBCore/RequestDispatcher


Ignore:
Timestamp:
10/05/07 00:18:23 (18 years ago)
Author:
leo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UTGBCore/RequestDispatcher

    v22 v23  
    2222  </servlet-mapping>
    2323}}}
    24   * The lines param-name=base-package, param-value=(application base) specifies the location (base package name) where the RequestDispatcher searches recursively for RequestHandler implementations (Java classes).
    25   * With the above setting, an HTTP request, e.g.,  http://localhost:8989/hello.action, is mapped to the request handler org.utgenome.gwt.utgb.server.app.Hello class. The upper letters are converted into the lower letters when mapping the request, e.g., Hello action can be accecced via hello.action URL.
     24  * The lines, param-name=base-package, param-value=(application base) specify the location (base package name) where the RequestDispatcher recursively searches for RequestHandler implementations (Java classes).
     25  * With the above setting, an HTTP request, e.g., http://localhost:8989/hello.action, is mapped to the request handler org.utgenome.gwt.utgb.server.app.Hello class.
     26The upper letters are converted into the lower letters when mapping the request, e.g., Hello action can be accecced via hello.action URL.
    2627    * Another example using hierarchies of actions:   http://localhost:8989/admin/login.action is mapped to org.utgenome.gwt.utgb.server.app.action.Login class.
    2728