bonjour!
j'ai cherché des tuto sur richfaces sur ce site et j'en ai pas trouvé.Mon projet utilise Richfaces 4 et jsf 2.0!!!!j'utilise les jars suivant:
commons-beanutils-1.8.3.jar

commons-codec-1.3.jar

commons-collections-3.2.jar

commons-digester-1.8.jar

commons-logging-1.1.1.jar

cssparser-0.9.5.jar

guava-r08.jar

jaxb-api-2.2.jar

jhighlight-1.0.jar

myfaces-api-2.1.5.jar

myfaces-impl-2.1.5.jar

richfaces-components-api-4.1.0.Final.jar

richfaces-components-ui-4.1.0.Final.jar

richfaces-core-api-4.1.0.Final.jar

richfaces-core-impl-4.1.0.Final.jar

sac-1.3.jar
et le contenu web.xml est le suivant:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
</web-app>
Mon problème c'est que netbeans ne connaît pas mon taglib de déclaration de richfaces!merci beaucoup!