我想在WAS8.5.5.2中部署应用程序。我的耳朵结构如下:

serverEar.ear
-serverWar.war
---- WEB-INF
----'web'目录内容

我有 application.xml:

 <application version="6" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd" >
    <module>
        <web>
            <web-uri> serverWar.war</web-uri>
            <context-root>serverWar</context-root>
        </web>
    </module>

    <library-directory> web/lib</library-directory>

</application>

web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">

    <servlet>
        <servlet-name>p1</servlet-name>
        <servlet-class>com.test.Server</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>p1</servlet-name>
        <url-pattern>/server</url-pattern>
    </servlet-mapping>

    <security-constraint>
        <display-name/>
        <web-resource-collection>
            <web-resource-name/>
            <description/>
            <url-pattern>/*</url-pattern>
            <http-method>POST</http-method>
            <http-method>GET</http-method>
        </web-resource-collection>
        <user-data-constraint>
            <description/>
            <transport-guarantee>CONFIDENTIAL</transport-guarantee>
        </user-data-constraint>
    </security-constraint>

</web-app>

我有目录结构:

java - WebSphere Application Server 8 : Error 404: java. io.FileNotFoundException:SRVE0190E:找不到文件:-LMLPHP

我已经从WAS ibm/console安装了该应用程序。安装目录是..\Desktop\Test\out\artifacts\serverEar,在其中放置了我的耳朵文件(不确定安装目录是否会影响此操作?)。

应用程序已成功安装并启动。

我已经尝试过网址:https://my_server:9443/serverWar/server,它给了我:Error 404: java.io.FileNotFoundException: SRVE0190E: File not found: /server
我以前从未处理过WAS,也不知道可能在哪里出错。

任何建议,指针高度赞赏!

最佳答案

好的,这样问题就解决了。问题是context root未设置为serverWar,因此无法识别serverWar/服务器URL。因此,我按照以下步骤操作了set context root from IBM console

解决此问题后,我又遇到了另一个相关问题:
Error 404: javax.servlet.UnavailableException: SRVE0200E: Servlet: Could not find required class
看来我们需要在WEB-INF中拥有类目录,IntelliJ由于某种原因未创建类目录,并且以上结构对于WildFly和WebLogic均适用。因此,在WAS上部署Ear文件时,您所需要做的就是从production目录中复制类。它使我的应用程序按预期工作。

完成上述所有更改后,我可以成功访问url https://my_server:9443/serverWar/server

希望这对WAS新手有所帮助!

关于java - WebSphere Application Server 8 : Error 404: java. io.FileNotFoundException:SRVE0190E:找不到文件:,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36625804/

10-11 01:13