java – WebLogic 10.3部署错误(WebApp 3.0 / Spring 4 MVC / Hibernate应用程序)
作者:互联网
我是WebLogic的新手,并在不同的服务器上开发了我的应用程序.我现在必须将其部署到WebLogic 10.3服务器.我将WAR文件上传到服务器并尝试安装它.我收到以下错误:
Message icon - Error Unable to access the selected application.
Message icon - Error Exception in AppMerge flows' progression
Message icon - Error Exception in AppMerge flows' progression
Message icon - Error VALIDATION PROBLEMS WERE FOUND problem: cvc-enumeration-valid: string value '3.0' is not a valid enumeration value for web-app-versionType in namespace http://java.sun.com/xml/ns/javaee:<null>
我关注的是它声明值3.0不是有效枚举值的部分. WebLogic 10.3是否支持web-app_3_0?春天4怎么样?还是Hibernate 4?我以为我们正在使用更高版本…不幸的是我们仍然坚持使用10.3.
web.xml中
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
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" metadata-complete="true">
<display-name>Contact Management Suite</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
解决方法:
看来Weblogic 10.3 doesn’t support Servlet 3规范.如果可能,您需要使用Weblogic 12c.
标签:java,spring,hibernate,weblogic,weblogic-10-x 来源: https://codeday.me/bug/20190629/1321969.html