Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried to activate EL proposals in a Facelets page, but when I hit Ctrl+Space, it doesn't work. I managed to activate JSF tag proposals thank to other questions, but EL proposals aren't working. How can I activate this function in Eclipse? Is it a known issue?

For example:

<h:inputHidden id="id" value="#{ctrl+space not working!}"/>
share|improve this question
Facelets (XHTML) is the successor of JSP. I believe you're talking about EL proposals instead of JSP proposals, right? I've fixed the terminology. – BalusC Jun 8 '11 at 11:55
A similar question was posted here: stackoverflow.com/questions/2136218/… – maple_shaft Jun 8 '11 at 11:59
And here, for tag autocompletion: stackoverflow.com/questions/6204807/… – BalusC Jun 8 '11 at 12:10
Thank you for correction! I was speaking about facelets in fact! I tried it and it works good. I noticed that Autocompletion is not working for facesContext.ctrl+space. Do you know if it is possible? – M3rlino Jun 8 '11 at 13:34

1 Answer

up vote 3 down vote accepted

Eclipse doesn't support this out the box. Even the support in JSP is very limited. Only the properties of <jsp:useBean> are available by autocomplete. There are however plugins which supports this. For example, the JBoss Tools plugin which can be installed as described here.

enter image description here

(with unicode bugs, as you see above in the rightmost window)

This has in its current 3.2.0 version only a major disadvantage for JSF 2.0 projects: the bean needs to be declared in faces-config.xml in order to get it to work. It does not recognize @ManagedBean annotated beans yet, it only recognizes the @Named ones. The JSF annotation support (@ManagedBean, @FacesValidator, etc) is planned for the upcoming 3.3.0 version.

The Aptana plugin is told to work fine for EL proposals in JSPs, but I am not sure for Facelets. I didn't had good experiences with installing and configuring the plugin for JSP some years ago.

share|improve this answer
Yeah. In Indigo 3.4.0 JBOSS Tools Plugin works with @ annotations too.Thank you Balusc – M3rlino Mar 30 '12 at 14:16
You're welcome. Don't forget to mark the answer accepted whenever it helped (most) in solving the problem. – BalusC Mar 30 '12 at 14:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.