博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
weblogic/utils/NestedException
阅读量:5773 次
发布时间:2019-06-18

本文共 1259 字,大约阅读时间需要 4 分钟。

Working with Weblogic 8.1, it’s fine just to put jar of weblogic-8.1.jar into your classpath, your client application will find weblogic server easily but with Weblogic 9+ (in my case, Weblogic 10.3), it’s not the case if you don’t know.

You may get similar errors as:

 
1
2
3
4
5
java.lang.NoClassDefFoundError: weblogic/utils/NestedException
or
java.lang.NoClassDefFoundError: weblogic/descriptor/DescriptorBean
or
java.lang.NoClassDefFoundError: weblogic/utils/classloaders/GenericClassLoader

So you will try to drop following jars:

  • weblogic-10.3.0.0.jar
  • webserviceclient.jar
  • wlclient.jar
  • wlfullclient.jar
  • wljmsclient.jar
  • wls-api.jar or
  • wseeclient.jar
  • etc

But you will find it more than 2 days and still got most of NoClassDefFoundError as my cases, I almost went crazy with all these but finally found the solution, it’s an easy way to group all needed client jar into one jar file: wlfullclient.jar via command:

 
1
WL_HOME/server/lib>java -jar ../../../modules/com.bea.core.jarbuilder_1.
2.0
.
0
.jar

You will find it in weblogic server lib folder (WL_HOME/server/lib/wlfullclient.jar)

Add it into your client application classpath: ./wlfullclient.jar and drop the file into your client app library.

Everything will be Ok.

Do not doubt as myself, Good luck!

转载地址:http://xpaux.baihongyu.com/

你可能感兴趣的文章
模拟实现链栈
查看>>
条款9:绝不在构造和析构过程中调用virtual函数
查看>>
day8 socket编程CS模型完善错误处理
查看>>
Dzz任务板初版完成笔记-仿trello私有部署的一款轻量团队任务协作工具。
查看>>
线程基础8-quene讲解
查看>>
echarts - 使用echarts过程中遇到的问题(pending...)
查看>>
C语言字符串与字符数组
查看>>
Asp.net MVC 生成zip并下载
查看>>
POJ-2996 Help Me with the Game 模拟
查看>>
POJ-2676 Sudoku 搜索
查看>>
安装arm-linux-gcc-4.3.2
查看>>
Clear all username or password for login.
查看>>
configparser模块
查看>>
day_05、迭代器、生成器
查看>>
网络对抗技术 实验四 恶意代码技术
查看>>
2012寒假后半部分计划
查看>>
java.lang.IllegalArgumentException: Minimum column number is 0
查看>>
MongoDB学习笔记一 MongoDB安装
查看>>
Java基础学习总结(21)——常用正则表达式列表
查看>>
DB2 触发器使用1
查看>>