gpt4 book ai didi

java - 从 com.google.gwt 对 pom.xml 的依赖中排除 javax.servlet 包

转载 作者:行者123 更新时间:2023-11-29 05:22:27 25 4
gpt4 key购买 nike

我使用 Vaadin 7,vaadin 有一个默认包 javax.servlet 并且我需要在我的依赖项中包含另一个 javax 的 com.google.gwt。服务小程序。当我运行我的应用程序时,出现了这个错误:

SEVERE: Allocate exception for servlet Vaadin Application Servlet
java.lang.ClassCastException: com.vaadin.server.VaadinServlet cannot be cast to javax.servlet.Servlet

现在我想从这个依赖项中排除 javax.servlet,这是我目前所做的尝试:

<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>2.6.1</version>
<exclusions>
<exclusion> <!-- declare the exclusion here -->
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>

还有这个:

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<minimizeJar>true</minimizeJar>
<artifact>com.google.gwt:gwt-user</artifact>
<includes>
<include>com/google/**</include>
</includes>
<excludes>
<exclude>javax/servlet/**</exclude>
<exclude>javax/servlet/http/**</exclude>
<exclude>javax/servlet/resources/**</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>

但是两者都不起作用!。帮助!

最佳答案

我认为您实际上需要 gwt-servlet 依赖项而不是 gwt-user

也就是说,我不了解 Vaadin;也许有一个包含 GWT 类的 com.vaadin 依赖项?

关于java - 从 com.google.gwt 对 pom.xml 的依赖中排除 javax.servlet 包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24137777/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com