Eclipse JSF autocomplete bean

0

I have a JSF project that is currently using Primefaces , JSF and Hibernate . All the tags that I declare are autocompleting to me without problems using CTRL + SPACE in Eclipse .

xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
xmlns:f="http://java.sun.com/jsf/core"

The problem I have in programming parts that are using Beans in .XHTML :

<p:outputLabel value="#{beanCliente.datosPersonales.nif}" />

None of the properties of beanCliente are autocompleted to me using CTRL + SPACE , but when compiling and testing the code if it works correctly.

Is it possible to autocomplete the beans of a .XHTML ?

    
asked by Ralsho 18.10.2016 в 08:54
source

1 answer

0

To be able to use the eclipse with JSF that way, install the jboss plugin. If I remember correctly, it's JBoos Tools. According to the version of the eclipse you have (Luna, Kepler, Mars, etc).

To install the plugin, follow this tutorial: link

You tell me how it went. Greetings

    
answered by 26.10.2016 в 22:50