java.lang.NoClassDefFoundError: org/dom4j/Document

前端 未结 2 2090
猫巷女王i
猫巷女王i 2020-12-20 22:01

I have a class called XMLtoXML.java and this is one of it\'s methods...

import org.dom4j.Document;
import org.dom4j.Element;
import org.dom4         


        
2条回答
  •  伪装坚强ぢ
    2020-12-20 22:28

    The stacktrace clearly states that other org.dom4j classes are present and being used. So it seems you have library version conflict.

    dom4j and jaxen versions should be compatible with each other.

    Compare their versions with those that work well in standalone mode.

提交回复
热议问题