提问者:小点点

试图在Tomcat 7上部署来自GWT-RPC项目的战争


我有我的GWT-RPC项目,在服务器上使用Paypal的SDK商家(用于快速结账),使用以下类路径:

<classpath>
            <pathelement location="/home/anto0192/Documenti/TesiProvaFinale/TesiFinale/MovieUniverseFinal/src" />
            <pathelement location="/home/anto0192/Documenti/TesiProvaFinale/TesiFinale/MovieUniverseFinal/war/WEB-INF/classes" />
            <pathelement location="/media/Dati/Uni(IIIanno)/Tesi/postgresql-9.4-1201.jdbc4.jar" />
            <pathelement location="/home/anto0192/Documenti/TesiProvaFinale/paypal-core-1.4.3.jar" />
            <pathelement location="/home/anto0192/Documenti/gwt-2.7.0/gwt-user.jar" />
            <pathelement location="/home/anto0192/Documenti/gwt-2.7.0/gwt-dev.jar" />
            <pathelement location="/home/anto0192/Documenti/gwt-2.7.0/validation-api-1.0.0.GA-sources.jar" />
            <pathelement location="/home/anto0192/Documenti/gwt-2.7.0/validation-api-1.0.0.GA.jar" />
            <pathelement location="/home/anto0192/Documenti/gwt-2.7.0/gwt-codeserver.jar" />
            <pathelement location="/home/anto0192/Documenti/TesiProvaFinale/merchant-sdk-java-2.13.117/merchantsdk/target/merchantsdk-2.13.117.jar" />
            <pathelement location="/home/anto0192/Documenti/TesiProvaFinale/merchant-sdk-java-2.13.117/merchantsdk/target/merchantsdk-2.13.117-javadoc.jar" />
            <pathelement location="/home/anto0192/Documenti/TesiProvaFinale/merchant-sdk-java-2.13.117/merchantsdk/target/merchantsdk-2.13.117-sources.jar" />
            <pathelement location="/home/anto0192/Documenti/gwt-2.7.0/gwt-dev.jar" />
        </classpath>

在我的战争/WEB-INF/lib上我添加了

gwt-codeserver.jar  gwt-servlet.jar           paypal-core-1.4.3.jar
gwt-dev.jar         merchantsdk-2.13.117.jar  postgresql-9.4-1201.jdbc4.jar

我从指挥战争中产生战争

MovieUniverse  MovieUniverse.html  WEB-INF

使用终端命令:

sudo jar -cvf MovieUniverse.war MovieUniverse.html WEB-INF;

我从Tomcat的管理器应用程序部署。部署发生了,我可以在我的Tomcat应用程序列表中看到它。我在页面上

http://localhost:8080/MovieUniverse/MovieUniverse.html

我在chrome的控制台上收到这个错误:

 http://localhost:8080/MovieUniverse/MovieUniverse/MovieUniverse.nocache.js 404 (Not Found)

页面未加载,我该怎么办?我认为这是WEB-INF/lib中插入的jar的问题,但我无法解决它。


共1个答案

匿名用户

对于未来:我通过命令行到达它:

sudo jar -cvf MovieUniverse.war *

从战争道路内部