Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Fixed
-
2.7
-
None
-
None
-
JBoss, Windows, JDK 1.5
Description
Hi,
I'm trying to switch my working code from 4.1.1 to 4.1.2-SNAPSHOT, but get an OGNL error. It seems that the Tapestry tries to get list of properties based on the actual class not interface of the object even if class is not public.
page class:
abstract public Map<String, Integer> getProcessMap();
abstract public Map.Entry<String, Integer> getIterProcessEntry();
page definition:
<property name="iterProcessEntry" />
<component id="processLoop" type="For">
<binding name="source" value="processMap.entrySet()" />
<binding name="value" value="iterProcessEntry" />
</component>
<component id="iterProcessNameLabel" type="Insert">
<binding name="value" value="iterProcessEntry.key" />
</component>
Exception:
tried to access class java.util.HashMap$Entry from class ognl.ASTTest28738682Accessor
So despite "iterProcessEntry" property is defined with public interface Map.Entry, the calculation of "iterProcessEntry.key" tries to work with class information that is not public in this case. It it bug? I have not been able to find anything in JIRA. How such often used code was able to stop working and sleep though test cases? I use Sun JDK 1.5.11.