WebSphere Application Server 8:错误 404:java.io.FileNotFoundException:SRVE0190E:找不到文件:
WebSphere Application Server 8 : Error 404: java.io.FileNotFoundException: SRVE0190E: File not found:
我想在 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>
我的目录结构是:
我已经从 WAS ibm/console 安装了应用程序。安装目录是我的ear文件所在的..\Desktop\Test\out\artifacts\serverEar
(不确定安装目录是否影响这个?)。
应用程序已成功安装并启动。
我试过 url : https://my_server:9443/serverWar/server 它给了我 : Error 404: java.io.FileNotFoundException: SRVE0190E: File not found: /server
我以前从未处理过 WAS,我不确定我可能哪里出错了。
非常感谢任何建议和指点!
好的,那么问题就解决了。问题是 context root
未设置为 serverWar,因此它无法识别 serverWar/server 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 的人有所帮助!
我希望这对其他人有帮助,因为我花了很多时间才找出原因:
当我尝试在 WAS 8.5 上部署 WAR 文件时,我遇到了同样的问题,我的问题是这个 WAS 有 java jdk 6 而 我的申请需要 jdk 8
我想在 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>
我的目录结构是:
我已经从 WAS ibm/console 安装了应用程序。安装目录是我的ear文件所在的..\Desktop\Test\out\artifacts\serverEar
(不确定安装目录是否影响这个?)。
应用程序已成功安装并启动。
我试过 url : https://my_server:9443/serverWar/server 它给了我 : Error 404: java.io.FileNotFoundException: SRVE0190E: File not found: /server
我以前从未处理过 WAS,我不确定我可能哪里出错了。
非常感谢任何建议和指点!
好的,那么问题就解决了。问题是 context root
未设置为 serverWar,因此它无法识别 serverWar/server 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 的人有所帮助!
我希望这对其他人有帮助,因为我花了很多时间才找出原因:
当我尝试在 WAS 8.5 上部署 WAR 文件时,我遇到了同样的问题,我的问题是这个 WAS 有 java jdk 6 而 我的申请需要 jdk 8