Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to reactivate code assist in my xhtml page (eclipse 3.5, jboss tools 3.1, jsf 1.2)

I develop jsf xhtml pages with facelets, and I always had code assist for all the taglibs i declared i my xhtml root element (h, f etc..)

But, since, like 30 minutes, when i ctrl+space i only have regular html and ui:* proposals.

I didn't change anything. It just broke, no error message, nothing.

I searched the web, but nothing either, or i am not searching right.

Please help me :)

ps : here's an example of one of my xhtml page's header :

<?xml version="1.0" encoding="ISO-8859-1"?>
<ui:composition xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:ui="http://java.sun.com/jsf/facelets" 
 xmlns:h="http://java.sun.com/jsf/html"
 xmlns:f="http://java.sun.com/jsf/core" 
 xmlns:a4j="http://richfaces.org/a4j" 
 xmlns:r="http://richfaces.org/rich"
 xmlns:c="http://java.sun.com/jstl/core"
 xmlns:s="http://jboss.com/products/seam/taglib">
like image 375
Maxime ARNSTAMM Avatar asked Jan 13 '10 16:01

Maxime ARNSTAMM


1 Answers

  1. Right click on the project, choose properties, select “Project Facets“, make sure the “JavaServer Faces” is checked. If it is checked go to step 2.

  2. Create an user library and include the JSF API and implementation library, jsf-api-xxx.jar and jsf-impl-xxx.jar. It will add the JSF capabilities to your project.

If you don't understand click: http://www.mkyong.com/jsf2/eclipse-ide-xhtml-code-assist-is-not-working-for-jsf-tag/

Best Regards.

like image 96
kinkajou Avatar answered Sep 28 '22 20:09

kinkajou