Community
Participate
Working Groups
Build Identifier: M20100211-1343 Design pane doesn't find value for resource key for the following: <fmt:setBundle basename="resources.application" var="app"/> <fmt:message key="welcome.heading" bundle="${app}"></fmt:message> It just displays ??welcome.heading?? This works correctly in the design pane: <fmt:setBundle basename="resources.application"/> <fmt:message key="welcome.heading"></fmt:message> Also if you enter the following without saving: <fmt:setBundle basename="resources.application" var="app"/> <fmt:message key="welcome.heading" bundle="${ }"></fmt:message> And place your cursor in the immediate EL expression for the fmt:message tag, clicking control-space doesn't bring up the "app" entry until a save. But perhaps this is by design. Reproducible: Always Steps to Reproduce: 1. Create a JSP file 2. Try out the examples above