Bonjour,
je débute en une application JEE,je travaille avec netbeans sous tomcat
le problème c'est quand j'ai ajouté les paramètres du fichier faces-config,l'exécution de l'application a pour résultat l'erreur suivante:
Incrementally deploying http://localhost:8084/projet
Completed incremental distribution of http://localhost:8084/projet
Incrementally redeploying http://localhost:8084/projet
Start is in progress...
start?path=/projet
FAIL - Application at context path /projet could not be started
C:\Documents and Settings\admin\My Documents\NetBeansProjects\projet\nbproject\build-impl.xml:576: The module has not been deployed.
BUILD FAILED (total time: 1 second)
voilà le fichier faces-config.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
 
<navigation-rule>
  <from-view-id>/welcomeJSF.jsp</from-view-id>
- <navigation-case>
  <from-outcome>ok</from-outcome>
  <to-view-id>/ok.jsp</to-view-id>
  </navigation-case>
- <navigation-case>
  <from-outcome>error</from-outcome>
  <to-view-id>/error.jsp</to-view-id>
  </navigation-case>
  </navigation-rule>
<managed-bean>
  <managed-bean-name>LoginBean</managed-bean-name>
  <managed-bean-class>javabean.LoginBean</managed-bean-class>
  <managed-bean-scope>request</managed-bean-scope>
  </managed-bean>
Aidez moi à trouver pourquoi mon application ne démarre plus après l'ajout du fichier faces-config,merci d'avance.