0

我正在尝试在我的代码中使用 JSON-lib api 将 java 对象转换为 JSONObject。

我已将以下链接中指定版本的所有依赖项添加到我的 j2ee Web 模块依赖项中

http://json-lib.sourceforge.net/

但是,每当我调用 JSONObject.fromObject() 方法时,我都会得到 NoSuchMethodError。

我还应该指出,完全相同的代码和依赖项在我的 tomcat 服务器上工作,但在我的 websphere 应用程序服务器上不工作。有谁知道我可能做错了什么?

下面的部分堆栈跟踪:

 E com.ibm.ws.webcontainer.webapp.WebApp logServletError SRVE0293E: [Servlet Error]-[SpringMVCServlet]: java.lang.NoSuchMethodError: org/apache/commons/collections/map/ListOrderedMap.<init>()V
    at net.sf.json.JSONObject.<init>(JSONObject.java:1450)
    at net.sf.json.util.CycleDetectionStrategy.<clinit>(CycleDetectionStrategy.java:37)
    at java.lang.J9VMInternals.initializeImpl(Native Method)
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:200)
    at net.sf.json.JsonConfig.<clinit>(JsonConfig.java:65)
    at java.lang.J9VMInternals.initializeImpl(Native Method)
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:200)
    at net.sf.json.JSONObject.fromObject(JSONObject.java:134)
4

1 回答 1

0

确保您的公共集合 jar 版本正确WEB-INF/lib,然后"Classes loaded with application class loader first"在您的 WebSphere 管理控制台中设置选项,如下所示

于 2011-05-31T20:40:08.437 回答