Bonjour, j'ai une erreur au démarrage de mon application web JSF et Richfaces
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
java.lang.RuntimeException: Cannot find FacesContext
	javax.faces.webapp.UIComponentClassicTagBase.getFacesContext(UIComponentClassicTagBase.java:1835)
	javax.faces.webapp.UIComponentClassicTagBase.setJspId(UIComponentClassicTagBase.java:1652)
	org.apache.jsp.login_jsp._jspx_meth_f_005fview_005f0(login_jsp.java:148)
	org.apache.jsp.login_jsp._jspService(login_jsp.java:122)
	org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
	javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
	org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
	org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)
	org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)
	javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
Voila Web.XML
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?xml version="1.0" encoding="UTF-8"?>
 
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
 
 
 
	<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>*.jsf</url-pattern>
	</servlet-mapping>
 
 
	<session-config>
		<session-timeout>30</session-timeout>
	</session-config>
 
	<welcome-file-list>
		<welcome-file>ok.jsp</welcome-file>
	</welcome-file-list>
 
	<display-name>a4jEchoText</display-name>
 
	<context-param>
		<param-name>org.richfaces.SKIN</param-name>
		<param-value>darkX</param-value>
	</context-param>
	<context-param>
		<param-name>org.ajax4jsf.VIEW_HANDLERS</param-name>
		<param-value>com.sun.facelets.FaceletViewHandler</param-value>
	</context-param>
	<!-- unnecessary with richfaces 3.3.1 -->
	<context-param>
		<param-name>
			com.sun.faces.enableRestoreView11Compatibility
		</param-name>
		<param-value>true</param-value>
	</context-param>
	<!-- ViewExpiredException handling END -->
	<context-param>
		<param-name>com.sun.faces.disableVersionTracking</param-name>
		<param-value>true</param-value>
	</context-param>
 
	<context-param>
		<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
		<param-value>client</param-value>
	</context-param>
 
 
	<context-param>
		<param-name>javax.faces.CONFIG_FILES</param-name>
		<param-value>/WEB-INF/faces-config.xml</param-value>
	</context-param>
 
 
	<filter>
		<filter-name>Extensions Filter</filter-name>
		<filter-class>
			org.apache.myfaces.webapp.filter.ExtensionsFilter
		</filter-class>
 
		<init-param>
			<description>
				Set the size limit for uploaded files. Format: 10 - 10
				bytes 10k - 10 KB 10m - 10 MB 1g - 1 GB
			</description>
			<param-name>uploadMaxFileSize</param-name>
			<param-value>100m</param-value>
		</init-param>
		<init-param>
			<description>
				Set the threshold size - files below this limit are
				stored in memory, files above this limit are stored on
				disk. Format: 10 - 10 bytes 10k - 10 KB 10m - 10 MB 1g -
				1 GB
			</description>
			<param-name>uploadThresholdSize</param-name>
			<param-value>3000k</param-value>
		</init-param>
		<init-param>
			<description>
				Set the path where the intermediary files will be
				stored.
			</description>
			<param-name>uploadRepositoryPath</param-name>
			<param-value>/tmp</param-value>
		</init-param>
 
	</filter>
	<filter-mapping>
		<filter-name>Extensions Filter</filter-name>
		<servlet-name>Faces Servlet</servlet-name>
	</filter-mapping>
 
 
	<filter>
		<display-name>RichFaces Filter</display-name>
		<filter-name>richfaces</filter-name>
		<filter-class>org.ajax4jsf.Filter</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>richfaces</filter-name>
		<servlet-name>Faces Servlet</servlet-name>
		<dispatcher>REQUEST</dispatcher>
		<dispatcher>FORWARD</dispatcher>
		<dispatcher>INCLUDE</dispatcher>
	</filter-mapping>
 
	<filter>
		<display-name>Ajax4jsf Filter</display-name>
		<filter-name>ajax4jsf</filter-name>
		<filter-class>org.ajax4jsf.Filter</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>ajax4jsf</filter-name>
		<servlet-name>Faces Servlet</servlet-name>
		<dispatcher>FORWARD</dispatcher>
		<dispatcher>REQUEST</dispatcher>
		<dispatcher>INCLUDE</dispatcher>
	</filter-mapping>
 
 
 
 
	<listener>
		<listener-class>
			com.sun.faces.config.ConfigureListener
		</listener-class>
	</listener>
 
 
	<listener>
		<listener-class>
			com.mabya.marotrans.systrans.alertjobs.SchedulerServlet
		</listener-class>
	</listener>
 
 
	<context-param>
		<description>
			Use this to suppress Facelets error page
		</description>
		<param-name>org.apache.myfaces.ERROR_HANDLING</param-name>
		<param-value>false</param-value>
	</context-param>
	<context-param>
		<description>
			see bug <a href="https://issues.apache.org/jira/browse/MYFACES-1786" target="_blank">https://issues.apache.org/jira/browse/MYFACES-1786</a>
			...if the web container is restarted, a new secret is
			generated..causing javax.crypto.BadPaddingException when JSF
			tries to restore state
		</description>
		<param-name>org.apache.myfaces.USE_ENCRYPTION</param-name>
		<param-value>false</param-value>
	</context-param>
 
	<error-page>
		<exception-type>
			javax.faces.application.ViewExpiredException
		</exception-type>
		<location>/ok.jsp</location>
	</error-page>
 
	<error-page>
		<exception-type>javax.faces.FacesException</exception-type>
		<location>/ok.jsp</location>
	</error-page>
 
	<error-page>
		<exception-type>
			org.apache.jasper.el.JspELException
		</exception-type>
		<location>/ok.jsp</location>
	</error-page>
 
	<error-page>
		<exception-type>java.lang.Exception</exception-type>
		<location>/error.jsp</location>
	</error-page>
 
</web-app>
voila l'appelé ou page
Merci de votre aide