Ursache der "Error deploying configuration descriptor" auf Tomcat 7.0.12

Wenn ich versuche die Bereitstellung einer war-Datei durch fallenlassen in das webapps-Verzeichnis, erhalte ich folgende Meldung in der Konsole:

04.05.2011 19:34:07 org.apache.catalina.startup.HostConfig deployWAR
SEVERE: Error deploying configuration descriptor xyz.war

Ich fand keine Hinweise über die genauen Ursachen dieser in den logs.

Wo finde ich die Angaben (e. g. der stack-trace) über diesen Ausfall?

Hier ist die web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    id="WebApp_ID" version="2.5">
    <display-name>myapp</display-name>
    <context-param>
        <description>
    Vaadin production mode</description>
        <param-name>productionMode</param-name>
        <param-value>false</param-value>
    </context-param>
    <servlet>
        <servlet-name>Project Control Center Application</servlet-name>
        <servlet-class>com.vaadin.terminal.gwt.server.ApplicationServlet</servlet-class>
        <init-param>
            <description>
        Vaadin application class to start</description>
            <param-name>application</param-name>
            <param-value>at.mycompany.myapp.ProjectControlCenterApplication</param-value>
        </init-param>
    </servlet>
    <servlet-mapping>
        <servlet-name>Project Control Center Application</servlet-name>
        <url-pattern>/*</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.html</welcome-file>
        <welcome-file>default.htm</welcome-file>
        <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <listener>
        <listener-class>at.mycompany.myapp.impl.persistence.DatabaseStartStopServletContextListener</listener-class>
    </listener>
    <session-config>
        <session-timeout>480</session-timeout>
    </session-config>
</web-app>
  • Ist Ihr web.xml gut gebildet?
  • Ich klebte die web.xml der Inhalt der Datei in meine Frage.
InformationsquelleAutor DP_ | 2011-05-04
Schreibe einen Kommentar