No code completion with resource-bundle content
-----------------------------------------------
Key: JBIDE-20668
URL:
https://issues.jboss.org/browse/JBIDE-20668
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: jsf
Affects Versions: 4.3.0.Beta2
Environment: - Eclipse Mars
- JBoss Tools 4.3.0 Beta 2
- Java EE 6 project currently running on Glasfish 4
Reporter: Thomas Kernstock
Assignee: Viacheslav Kabanovich
Fix For: 4.3.0.CR1
Attachments: JBossTest.zip, screenshot-1.png, screenshot-2.png
I moved from Eclipse Kelper to Mars today, installing the latest JBoss Tools 4.3.0 Beta
2. When I open a JSF page with the VisualPage Editor I perfectly get code completion for
all my cdi beans - as in Kepler.
When it comes to the message-bundle, there is no code completion anymore.
I configure in faces-config.xml:
<resource-bundle>
<base-name>com.xyz.portal.text.portal</base-name>
<var>msgs</var>
</resource-bundle>
and have an xml line like this:
<h:outputLabel for="anrede" value="#{msgs.profil_anrede} :" />
When I press <crtl>-space after value="#{ I see all cdi beans listed, but not
msgs. This worked fine under Eclipse Kepler.
BTW - CodeRecommenders code completion is switched off.
Thomas