How do I resolve this Weblogic intermittent java.lang.LinkageError? What are the steps to understanding what it means and fix it?

前端 未结 2 404
囚心锁ツ
囚心锁ツ 2021-01-15 02:50

I have an intermittent linkage error thrown: (That\'s basically all the information I have)

java.lang.LinkageError loader constraint violation: 
  when resol         


        
2条回答
  •  醉梦人生
    2021-01-15 03:29

    The solution was eventually to update the weblogic-application.xml file of the deployed app

    The application used an old jaxrpc-api.jar that we could not remove for various reason,

    The solution we used to prefer the internal jar was this (Is there a better way?)

    
      ...
      java.xml.rpc.*
    
    

提交回复
热议问题