SebastianH
SebastianH

Reputation: 2182

Eclipse JSF content assist not working

I am trying to work with an (existing) JSF Project in the current Eclipse (Kepler SR 1). Sadly Eclipse is ignoring the links between JSF/JSP pages and ManagedBeans (via faces-config.xml). I cannot CTRL-Click on a #{myBean.someValue} (inside a tag attribute) and I dont get any autocompletion assist when i hit CTRL-Space inside #{}.

The project is using somewhat ancient library versions - maybe that is a problem?

I tried all the guides on stackoverflow and created a dummy project as described in the JSF Tooling User Guide but none helped. Any help appretiated!

Upvotes: 5

Views: 5648

Answers (2)

bruno777
bruno777

Reputation: 1896

I had to uninstall IceFaces plugin to get the autocomplete of JBoss Editor to work.

a kind of interference...

JSF 1.1 IceFaces 1.8 ( but without plugin) Eclipse Mars

Upvotes: 0

chrisF
chrisF

Reputation: 210

I had the same problem with Kepler and solved the problem by

  1. installing JBoss Tools
  2. Right clicking the project > Configure -> Add JSF capabilities

Hope that helps others, too.

Upvotes: 10

Related Questions