2017-07-18 17 views
0

これはTomcatとWar-Filesで初めての作業ですので、この場合は私の愚かさに慈悲を表してください。TomcatのWar.-Fileのデプロイメントエラー

私はXAMPPでTomcatを起動したいとき、私はエラーを次取得:

18-Jul-2017 10:39:27.423 SCHWERWIEGEND [localhost-startStop-1] 
org.apache.catalina.core.ContainerBase.addChildInternal 
ContainerBase.addChild: start: 
org.apache.catalina.LifecycleException: Failed to start component 
[/Tuev_Test] 
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:162) 
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:753) 
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:729) 
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:717) 
at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:940) 
at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1816) 
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) 
at java.util.concurrent.FutureTask.run(FutureTask.java:266) 
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) 
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) 
at java.lang.Thread.run(Thread.java:745) 
Caused by: org.apache.catalina.LifecycleException: Failed to process either the global, per-host or context-specific context.xml file therefore the [/Tuev_Test] Context cannot be started. 
at org.apache.catalina.startup.FailedContext.startInternal(FailedContext.java:199) 
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:145) 
... 10 more 

私はそれはweb.xml内の何かだと思うが、私は日食すべてで正常に動作しているので、何かわかりません。

<?xml version="1.0" encoding="UTF-8"?> 
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:jsp="http://java.sun.com/xml/ns/javaee/jsp" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1"> 
<display-name>Customer Support Application</display-name> 
<jsp-config> 
<jsp-property-group> 
    <url-pattern>*.jsp</url-pattern> 
    <url-pattern>*.jspf</url-pattern> 
    <scripting-invalid>false</scripting-invalid> 
    <include-prelude>/WEB-INF/jsp/base.jspf</include-prelude> 
    <trim-directive-whitespaces>true</trim-directive-whitespaces> 
    <default-content-type>text/html</default-content-type> 
</jsp-property-group> 
</jsp-config> 
<session-config> 
<session-timeout>30</session-timeout> 
    <cookie-config> 
     <secure>true</secure> 
    </cookie-config> 
    <tracking-mode>COOKIE</tracking-mode> 
</session-config> 
<distributable/> 
<security-constraint> 
<web-resource-collection> 
    <web-resource-name>Restricted URLs</web-resource-name> 
    <url-pattern>/*</url-pattern> 
</web-resource-collection> 
<user-data-constraint> 
    <transport-guarantee>CONFIDENTIAL</transport-guarantee> 
    </user-data-constraint> 
</security-constraint> 
<servlet> 
    <servlet-name>Startseite</servlet-name> 
    <servlet-class>com.Startseite</servlet-class> 
</servlet> 
<servlet-mapping> 
    <servlet-name>Startseite</servlet-name> 
    <url-pattern>/Startseite</url-pattern> 
</servlet-mapping> 

次のようにTomcatのwebapps-フォルダ内の自分のフォルダ構造は次のとおりです。

Tuev_Test 
--css 
--fonts 
--Images 
--js 
--META-INF 
--SQL 
--WEB-INF 
----classes 
------com 
--------Startseite 
----jsp 
----lib 
----web.xml 

またはそれが何か他のものだ君たちと思いますか?

は私がなぜ分からないが、私は、標準のTomcatのコンテキストで私のプロジェクトのcontext.xmlを交換し、あなたが任意のより多くの情報が必要な場合、私は喜んであなたに

答えて

0

それを与える

、あなたは助けることができると思います。 xmlと今すぐそれは正常に動作します

関連する問題