weblogic.management.DeploymentException: Deployment could not be created. Deployment creator is null.
执行此操作时遇到错误。
我又新建了一个项目一切都OK,不知道这个错在那里
Failed to initialize the application "Hzyldb2" due to error java.lang.ArrayIndexOutOfBoundsException: 26
java.lang.ArrayIndexOutOfBoundsException: 26
ArrayIndexOutOfBoundsException
发生这种问题,首先保证自己的程序没问题。造成这种问题很可能是由于没有让部属的项目停止就关闭了weblogic服务。解决办法:在控制台删除所有部属的项目,重启weblogic服务,重新部属即可。以后记的在关闭或重启weblogic服务时停止已部属的所有项目就好了。
WEB-INF下新建weblogic.xml文件,内容如下:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 8.1//EN" ""> <weblogic-web-app> <!-- <session-descriptor> <session-param> <param-name>TimeoutSecs</param-name> <param-value>1800</param-value> </session-param> </session-descriptor> --> <jsp-descriptor> <jsp-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </jsp-param> </jsp-descriptor> <container-descriptor> <index-directory-enabled>true</index-directory-enabled> <prefer-web-inf-classes>true</prefer-web-inf-classes> </container-descriptor> <context-root>/</context-root> </weblogic-web-app>
主要是weblogic和status的一个兼容问题,这个weblogic.xml是设置下加载的顺序。