Changes between Version 5 and Version 6 of UTGBCore/RequestDispatcher
- Timestamp:
- 10/04/07 15:11:19 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UTGBCore/RequestDispatcher
v5 v6 56 56 57 57 Note that, although the query string in the HTTP request consists of string values, our BeanUtil library 58 detects the data type to which the string should be translated by analysing the class definition (in this example, Hello class). 58 detects the data type to which the string should be translated by analysing the class definition. In this example, the string value 59 "2007" is translated into an integer, 2007. 59 60 61 The web page result of the avobe request looks like as this: 62 {{{ 63 Hello leo(2007) 64 }}} 60 65 61