Bonjour,

j'arrive à deployer un .war a partir de la commande mvn tomcat:deploy mais
le tomcat n'arrive pas à démarrer l'application.

J'ai cette erreur sur l'interface tomcat manager lorsque je veux démarrer mon application API
"ECHEC - L'application pour le chemin de contexte /API n'a pas pu être démarrée"
Dans le log, j'ai cette erreur :
GRAVE: Error filterStart
6 juin 2007 13:59:41 org.apache.catalina.core.StandardContext start
GRAVE: Erreur de démarrage du contexte [/API] suite aux erreurs précédentes
mon fichier web.xml (situé dans APi/src/main/webapp/) est le suivant :
Code xml : 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
<?xml version="1.0" encoding="UTF-8"?>
 
<web-app id="starter" 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">
 
	<display-name>Universal Service Directory project</display-name>
 
	<filter>
        <filter-name>struts2</filter-name>
        <filter-class>
            org.apache.struts2.dispatcher.FilterDispatcher
        </filter-class>
    </filter>
 
    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
 
 
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
 
</web-app>