J'ai cette erreur sur l'interface tomcat manager lorsque je veux démarrer mon application API
Code:
1 2
|
"ECHEC - L'application pour le chemin de contexte /API n'a pas puêtredémarrée" |
Dans le log, j'ai cette erreur :
Code:
1 2 3 4
|
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 |
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
<?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>
</web-app> |