Changes between Version 18 and Version 19 of UTGBCore/RequestDispatcher
- Timestamp:
- 10/04/07 19:26:52 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UTGBCore/RequestDispatcher
v18 v19 24 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 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. 26 * Another example using hierarchies of actions: http://localhost:8989/admin/login.action is mapped to org.utgenome.gwt.utgb.server. Login class.26 * Another example using hierarchies of actions: http://localhost:8989/admin/login.action is mapped to org.utgenome.gwt.utgb.server.app.action.Login class. 27 27 28 28