1. 字符编码
sun.io.MalformedInputException
at sun.io.ByteToCharGB18030.convert(ByteToCharGB18030.java(Compiled Code))
IBM JDK 1.4中对于io通道的异常处理更加严格,解决这一问题的办法是不使用IBM JDK 1.4中默认的io通道,而使用nio通道
添加-Dibm.stream.nio=true
2. 容器问题
java.lang.RuntimeException: An invocation of EJB XXXXXXX(Application: XXXXXXXX, EJBComponent: XXXXXEJB.jar) timed out while waiting to get an instance from the free pool.
问题原因
1。你的pool size实在太小了
2。你的 bean所提供的method是在执行一个耗时的操作(可能你的程序写的有问题)
3。你的concurrent user很多(其实和第一个是一回事)