eclipse中的Tomcat Server Publishing问题

时间:2013-08-10 17:34:30

标签: java eclipse tomcat tomcat7

当我尝试启动服务器时,我正处于异常

之下
Could not publish to the server.java.lang.IndexOutOfBoundsException

技术

JSF2,Primefaces3.5,Tomcat7,Java7,GSON2.2.4

操作系统

Ubuntu13 +

IDE

日食开普勒

我刚注意到当我删除GSON2.2.4.jar然后一切正常但是在添加这个jar之后没有任何工作甚至服务器都没有启动。

enter image description here

3 个答案:

答案 0 :(得分:1)

我在pom.xml中添加它时发现了这个问题

 <dependency>
        <groupId>com.google.code.gson</groupId>
        <artifactId>gson</artifactId>
        <version>2.2.4</version>
    </dependency>

当我运行mvn install时出现此问题我收到此错误

[ERROR] error: error reading /home/hariom/.m2/repository/com/google/code/gson/gson/2.2.4/gson-2.2.4.jar; invalid LOC header (bad signature)

所以我用这个替换了这个依赖

    <dependency>
    <groupId>com.google.code.gson</groupId>
    <artifactId>gson</artifactId>
    <version>2.2.2</version>
</dependency>

现在一切正常。

答案 1 :(得分:0)

。我遇到了同样的问题。我修复了它从pom.xml文件

更新pom依赖项

答案 2 :(得分:0)

只需重新启动系统即可解决您的问题。