I have results from
Query query = session.createQuery(\"From Pool as p left join fetch p.poolQuestion as s\");
query and I would like to di
EL interprets ${class.name}
as described - the name becomes getName() on the assumption you are using explicit or implicit methods of generating getter/setters
You can override this behavior by explicitly identifying the name as a function:
${class.name()}
This calls the function name() directly without modification.