Bug in calculation of ${} EL expression
---------------------------------------
Key: GERONIMO-3253
URL: https://issues.apache.org/jira/browse/GERONIMO-3253
Project: Geronimo
Issue Type: Bug
Security Level: public (Regular issues)
Affects Versions: 2.0-M6
Environment: geronimo-tomcat6-jee5-2.0-M6-rc1
Reporter: Alexander Zynevich
I have simple JSP snip:
*<h:outputText id="cll1" value="#{customerDetailsBean}" />*<br/>
*<h:outputText id="cll2" value="#{customerDetailsBean.customer}" />*<br/>
*${customerDetailsBean}*<br/>
*${customerDetailsBean.customer}*<br/>
it renders to:
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
**
How it may be?
The only special about my code is that I use Spring 2 and have
<variable-resolver>org.springframework.web.jsf.DelegatingVariableResolver</variable-resolver>
but this customerDetailsBean is defined in faces-config.xml and in session
scope:
<managed-bean>
<description>Backing bean for customer_details.jsp</description>
<managed-bean-name>customerDetailsBean</managed-bean-name>
<managed-bean-class>com.mycomp.viewbeans.cust.CustomerDetailsBean</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
<managed-property>
<property-name>customerManager</property-name>
<value>#{customerManager}</value>
</managed-property>
<managed-property>
<property-name>specialsManager</property-name>
<value>#{specialsManager}</value>
</managed-property>
</managed-bean>
again bug in Tomcat EL engine, like geronimo-tomcat6-jee5-2.0-M6-rc1 ?
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.