It really surprised me! I have the following code in my JSP.
<c:param name="title" value="${slideShow.title}" />
This code worked until I processed the SlideShow class and made all the attributes public and remote getters / setters. Therefore, it seems to me that EL only works with getter, and not with direct access to attributes. It's true? Is there a way to make it work with direct attributes instead of going through getters?
source
share