Weblogic Guava issue when deploying application

后端 未结 6 1829
天涯浪人
天涯浪人 2020-12-19 23:51

I\'m trying to deploy an application to a weblogic server, and I get the following error.
I have guava.jar in my classpath, I tried with all the latest versions I tried

6条回答
  •  一生所求
    2020-12-20 00:10

    Is it a WAR project? Or is it just a EJB jar?

    If the latest one, you've got a few options:

    • wrap your jar file into a EAR and deliver Guava's jar in it
    • add Guava's jar to the library folder of your AS
    • merge your jar file with Guava's one. For example, you can use Maven Shade Plugin if you're a Maven guy

提交回复
热议问题