<BEA-160197> <Unable to load descriptor D:\bea\user_projects\domains\base_domain\.\autodeploy\cc/WEB-INF/web.xml of module cc. >
原因:weblogic和web项目下的web.xml版本不匹配;
解决办法:修改将web.xml中的
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">替换为<web-app xmlns:j2ee="http://java.sun.com/xml/ns/j2ee">就可以了;
<BEA-149265> <Failure occured in the execution of deployment request with ID '1476409758532' for task '6'.Error is: 'weblogic.management.DeploymentException: [J2EE:160177]The application at "D:\bea\user_projects\domains\base_domain\.\autodeploy\aa" was not recognized as a valid application type. If this is an EAR file, please ensure the META-INF/application.xml exists. EJB-JARs should have a META-INF/ejb-jar.xml. WAR files require a WEB-INF/web.xml, and RARs require a META-INF/ra.xml. A JMS deployment should be an XML file whose name ends with "-jms.xml". A JDBC deployment should be an XML file whose name ends with "-jdbc.xml". For other application types, please consult the WebLogic Server documentation.' >
原因: 不是一个有效的程序类型(was not recognized as a valid application type),weblogic不能识别你的工程类型,即在webroot中找不到web.xml;
解决办法:新建web项目时生成web.xml文件;
<BEA-000438> <Unable to load performance pack. Using Java I/O instead. Please ensure that wlntio.dll is in: 'D:\bea\jdk1>
原因:没有正确配置,weblogic服务器找不到本地库文件;
解决办法:将D:\bea\weblogic92\server\native\win\32中的所有文件拷贝到D:\bea\weblogic92\server\bin下,然后重启服务器。