gpt4 book ai didi

eclipse - [HTTP :101380]There is more than one Web fragment with the same name: "spring_web"

转载 作者:行者123 更新时间:2023-12-01 22:49:19 32 4
gpt4 key购买 nike

我试图将一个 spring MVC 项目部署到 WebLogic 12c,但我遇到了这个错误。

[HTTP:101380]There is more than one Web fragment with the same name: "spring_web".

这是我的 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" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">

<display-name>spring-mvc-demo</display-name>

<!-- Spring MVC Configs -->

<!-- Step 1: Configure Spring MVC Dispatcher Servlet -->
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring-mvc-demo-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>

<!-- Step 2: Set up URL mapping for Spring MVC Dispatcher Servlet -->
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>

这是我的 weblogic.xml

<?xml version="1.0" encoding="UTF-8"?>
<wls:weblogic-web-app xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-web-app" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.7/weblogic-web-app.xsd">
<wls:weblogic-version>12.1.3</wls:weblogic-version>
<wls:context-root>spring-mvc-demo</wls:context-root>
</wls:weblogic-web-app>

任何帮助将不胜感激。

最佳答案

解压 maven 生成的 .war,并将其与 Eclipse 生成的进行比较。通常你必须告诉 maven 从某些工件中排除包,否则这些包将被打包两次(这几乎就是错误的意思 - 部署者已经遇到了一个具有特定名称的组件,并且这样做两次没有意义)

注意:如果您使用 Maven 构建项目,则以上给出的解决方案是一个可能的解决方案。

关于eclipse - [HTTP :101380]There is more than one Web fragment with the same name: "spring_web",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52323865/

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