Accessing Bean Properties
Format
- <jsp:getProperty name="name" property="property" />
Purpose
- Allow access to bean properties (i.e., calls to getXxx methods) without explicit Java programming
Notes
- <jsp:getProperty name="book1" property="title" />is equivalent to the following JSP expression<%= book1.getTitle() %>