我的应用程序无法在 WebSphere Application Server 8.5.5.10 上启动,并出现以下错误,该服务器正在 8.5.5.5 上运行
[1/2/17 17:54:20:842 IST] 0000006f ecs W com.ibm.ws.ecs.internal.scan.context.impl.ScannerContextImpl scanJAR unable to open input stream for resource org/reflections/scanners/MemberUsageScanner$1.class in archive WEB-INF/lib/reflections-0.9.10.jar
java.lang.RuntimeException
at org.objectweb.asm.MethodVisitor.visitParameter(Unknown Source)
at org.objectweb.asm.ClassReader.b(Unknown Source)
at org.objectweb.asm.ClassReader.accept(Unknown Source)
at org.objectweb.asm.ClassReader.accept(Unknown Source)
- 部署后应用无法启动
- JVM启动时应用程序启动失败
- 从控制台手动启动相同的应用程序。
当我将反射-0.9.10.jar 放入共享库时,我无法加载 webapp
Caused by: com.ibm.ws.webcontainer.exception.WebAppNotLoadedException: Failed to load webapp: null at com.ibm.ws.webcontainer.VirtualHostImpl.addWebApplication(VirtualHostImpl.java:177) at com.ibm.ws.webcontainer.WSWebContainer.addWebApp(WSWebContainer.java:901) ... 73 more Caused by: java.lang.RuntimeException at org.objectweb.asm.MethodVisitor.visitParameter(Unknown Source) at org.objectweb.asm.ClassReader.b(Unknown Source) at org.objectweb.asm.ClassReader.accept(Unknown Source) at org.objectweb.asm.ClassReader.accept(Unknown Source)
5.当我将所有第三方 jar 移动到共享库时应用程序启动。