I have a bean, ${product}. I would like to view all of the available fields / properties of this bean. So for instance, ${product.price}, ${p
${product}
${product.price}
${p
Replace object with the bean to determine.
Display all declared fields and their values.
Declared fields ${object.name} ${field.name}: ${object[field.name]}
Display all declared methods.
Declared methods<% object.getName() %> ${method.name}