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

前端 未结 7 1046
野性不改
野性不改 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:

    
        org.apache.xmlbeans
        xmlbeans
        2.4.0
    
    

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

    Add dependency for:

    
        org.apache.xmlbeans
        xmlbeans
        2.6.0
    
    

提交回复
热议问题