博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
maven error: Duplicate fragment name
阅读量:5808 次
发布时间:2019-06-18

本文共 885 字,大约阅读时间需要 2 分钟。

hot3.png

1、maven error: Duplicate fragment name

2、解决办法:

    pom.xml的jetty配置中配置

<allowDuplicateFragmentNames>true</allowDuplicateFragmentNames>。

例如:

 

   <plugin>

    <groupId>org.mortbay.jetty</groupId>
    <artifactId>jetty-maven-plugin</artifactId>
    <version>${jetty.version}</version>
    <configuration>
     <connectors>
      <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
       <port>${webserver.port}</port>
      </connector>
     </connectors>
     <webApp>
      <defaultsDescriptor>src/main/resources/webdefault.xml</defaultsDescriptor>
           <allowDuplicateFragmentNames>true</allowDuplicateFragmentNames>
     </webApp>
     <webAppConfig>

      <contextPath>/</contextPath>

     </webAppConfig>
     <systemProperties>
      <systemProperty>
       <name>org.mortbay.util.URI.charset</name>
       <value>${project.build.sourceEncoding}</value>
      </systemProperty>
     </systemProperties>
    </configuration>
   </plugin>

转载于:https://my.oschina.net/276172622/blog/840338

你可能感兴趣的文章
【我的总结20170823】多实例部署
查看>>
[MySQL优化案例]系列 — slave延迟很大优化方法
查看>>
线性表4 - 数据结构和算法09
查看>>
how to use Gesture in Iphone
查看>>
C语言数据类型char
查看>>
Python线程详解
查看>>
MongoDB 学习笔记之 Nested doc/DBRef (Spark)
查看>>
Online Patching--EBS R12.2最大的改进
查看>>
说说我的web前端之路,分享些前端的好书
查看>>
Binary Search Tree Iterator leetcode
查看>>
sql server DateTime与DateTime2的区别
查看>>
Oracle性能优化--DBMS_PROFILER
查看>>
关于团队成长和本地化团队建设的思考
查看>>
8月16日学习内容整理:计算机,变量,条件循环,break,continue
查看>>
借鉴bootstrap的方法,快速实现响应式开发
查看>>
跑步书籍推荐 --- 跑步指南
查看>>
asp.net服务控件的生命周期
查看>>
JAVA数据类型
查看>>
考前的焦躁
查看>>
rsync算法原理
查看>>