404 在 weblogic hello world 应用程序上

404 on weblogic hello world application

我正在尝试 运行 一个简单的 hello world web 应用程序,以确保我拥有正确的所有结构。

这是我得到的:

ear_test.ear
ear_test.ear/META-INF
ear_test.ear/META-INF/application.xml        
ear_test.ear/META-INF/MANIFEST.MF
ear_test.ear/META-INF/weblogic-application.xml    
ear_test.ear/test_web_project_1.war
ear_test.ear/test_web_project_1.war/META-INF
ear_test.ear/test_web_project_1.war/META-INF/MANIFEST.MF
ear_test.ear/test_web_project_1.war/WEB-INF/classes
ear_test.ear/test_web_project_1.war/WEB-INF/lib
ear_test.ear/test_web_project_1.war/WEB-INF/web.xml
ear_test.ear/test_web_project_1.war/helloWorld.jsp

application.xml

<?xml version="1.0" encoding="UTF-8"?>
<application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:application="http://java.sun.com/xml/ns/javaee/application_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd" version="5">
  <display-name>ear_test</display-name>
  <module>
    <web>
      <web-uri>test_web_project_1.war</web-uri>
      <context-root>/test_web_project_1</context-root>
    </web>
  </module>
</application>

weblogic-application.xml

<?xml version="1.0" encoding="ISO-8859-1"?>
    <weblogic-application>
        <session-descriptor>
            <cookie-name>WLSSessionID</cookie-name>
            <cookie-http-only>false</cookie-http-only>
            <debug-enabled>false</debug-enabled>
            <sharing-enabled>true</sharing-enabled>
        </session-descriptor>
    </weblogic-application>

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_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>test_web_project_1</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
     <welcome-file>helloWorld.jsp</welcome-file>
  </welcome-file-list>
</web-app>

我可以将它部署到 weblogic,它显示为活动状态。

然而,当我尝试访问网络应用程序时,通过:

http://myserver:7011/test_web_project_1

我收到 404 错误。

有什么解决这个问题的建议吗?

再次检查您的 URL,确保您实际上为部署应用程序的服务器引用了正确的 URL。