【发布时间】:2016-04-14 14:13:26
【问题描述】:
我想在 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 安装了应用程序。安装目录是..\Desktop\Test\out\artifacts\serverEar,我的ear文件放在那里(不知道安装目录会不会影响这个?)。
应用程序已成功安装并启动。
我已经尝试了网址:https://my_server:9443/serverWar/server,它给了我:Error 404: java.io.FileNotFoundException: SRVE0190E: File not found: /server
我以前从未处理过 WAS,也不确定哪里可能出错。
任何建议,指针都非常感谢!
【问题讨论】:
标签: java websphere-8