WebLogic 10.3 Deployment Errors (WebApp 3.0 / Spring 4 MVC / Hibernate Applications)

I am new to WebLogic and developed my application on another server. Now I have to deploy it to the WebLogic 10.3 server. I uploaded the WAR file to the server and tried to install it. I got the following errors:

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>

I'm interested in the part that states that a value of 3.0 is not a valid enumeration value. Does WebLogic 10.3 support web application_3_0? What about spring 4? or hibernate 4? I thought we used a later version ... unfortunately we were stuck with 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>
+4
source share
1 answer

, Weblogic 10.3 Servlet 3. , , Weblogic 12c.

+3

Source: https://habr.com/ru/post/1538794/


All Articles