The package org.w3c.dom is accessible from more than one module: , java.xml

前端 未结 7 1048
野性不改
野性不改 2021-01-03 19:37

I am unable to import org.w3c.dom.NodeList package to Eclipse. It is showing

The package org.w3c.dom is accessible from more than one mo

相关标签:
7条回答
  • 2021-01-03 20:14

    org.w3c.dom is used in:

    <dependency>
        <groupId>org.apache.xmlbeans</groupId>
        <artifactId>xmlbeans</artifactId>
        <version>2.4.0</version>
    </dependency>
    

    Check if this is imported transitively via some other dependency. Exclude the same

    Add dependency for:

    <dependency>
        <groupId>org.apache.xmlbeans</groupId>
        <artifactId>xmlbeans</artifactId>
        <version>2.6.0</version>
    </dependency>
    
    0 讨论(0)
提交回复
热议问题