Websphere liberty profile错误:404 SRVE0190E

时间:2014-05-20 15:45:49

标签: java servlets websphere-8 websphere-liberty

错误的原因可能是:Error 404: SRVE0190E: File not found: /SimpleServletPath

我正在websphere liberty配置文件服务器中部署。

我无法访问我的管理控制台login page

我可以在我的websphere liberty配置文件服务器上访问我的欢迎页面,但在创建servlet后无法访问。那就是上面的404错误出现的时候。

网上有类似的帖子,建议改变com.ibm.ws.webcontainer.invokefilterscompatibility=true。我找不到如何设置此参数,因为我无法访问websphere管理控制台登录。

我通过eclipse市场安装了websphere。

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<display-name>ServletExplore</display-name>
<welcome-file-list>
    <welcome-file>index.html</welcome-file>

</welcome-file-list>
    </web-app

1 个答案:

答案 0 :(得分:2)

默认情况下,您应用的上下文根将默认为应用程序的名称。您可以通过查看Servers选项卡上的服务器并编辑其配置来更改它(包括将其设置为/)。您可以在GUI中或直接在server.xml中进行更改。

如果您的应用程序被称为我的应用程序,我怀疑localhost:9080 / myapp / SimpleServletPath是您的servlet当前所在的位置。