Tag library reference for the following tag libraries:
This is version 1.0.
Can contain: empty
<wtfigo:attribute scope="request" debug="true" showValues="true" showEL="false"/>
| Name | Description | Type |
|---|---|---|
| debug | Set to true to generate log messages. Default is false. | boolean |
| scope | One of the following: ALL, APPLICATION, SESSION, REQUEST, or PAGE. Defaults to REQUEST. | String |
| showEL | Set to true to display the JSTL EL expression to access this object. Default is false. | boolean |
| showValues | Set to true to display the toString() value of the objects. Default is true. You might wish to turn this off if introspecting the object's properties would cause the object's state to be updated or, for example, your object uses LazyLoading and you are experiencing problems. | boolean |
Display bean property information about an object including all accessible properites and their JSTL accessors.
Can contain: empty
<wtfigo:displayObject object="${requestScope.YOUR_OBJECT_NAME}" debug="true"/>
| Name | Description | Type |
|---|---|---|
| debug | Set to true to generate log messages. Default is false. | boolean |
| depth | Set to the depth of nested properties you want displayed. Default is 0. | int |
| name* | The object you wish to have described | String |
| showEL | Set to true to display the JSTL EL expression to access this object. Default is false. | boolean |
| showValues | Set to true to display the toString() value of the object properties. Default is true. You might wish to turn this off if introspecting the object's properties would cause the object's state to be updated or, for example, your object uses LazyLoading and you are experiencing problems. | boolean |