Bonsoir,

j'essaie de déployer une application struts2 avec Tomcat6 mais il me met cette erreur :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
24 nov. 2008 22:16:19 org.apache.struts2.config.BeanSelectionProvider register
INFO: Loading global messages from package
24 nov. 2008 22:16:19 org.apache.catalina.core.StandardContext start
GRAVE: Error filterStart
24 nov. 2008 22:16:19 org.apache.catalina.core.StandardContext start
GRAVE: Erreur de d´┐¢marrage du contexte [/tp_final_struts] suite aux erreurs pr´┐¢c´┐¢dentes
Voici mon 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
<?xml version="1.0" encoding="UTF-8"?>
<web-app	id="PStruts2" version="2.5" 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_5.xsd">
 
    <display-name>Tp struts final</display-name>
 
    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
        <init-param>
        	<param-name>actionPackages</param-name>
        	<param-value>struts</param-value>
        </init-param>
    </filter>
 
    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>
    
     <taglib>
 		<taglib-uri>http://taglib.TagPerso</taglib-uri>
 			<taglib-location>
				/WEB-INF/tld/tag.tld
 			</taglib-location>
	</taglib>
 
</web-app>
Mais je ne trouve pas l'erreur de déploiement.