我是Websphere Application Server的新手,我在Apache Tomcat Server 8.X上托管了一个Web应用程序。在我的Apache Tomcat服务器中,我在server.xml中将上下文定义为:
<Context docBase="/home/centos/clientFiles/myApp" path="/myAppFiles" reloadable="true"/>
这意味着每当我写
http://localhost:8080/myAppFiles
在浏览器上,我从
提供文件/home/centos/clientFiles/myApp
现在我想在Websphere Application Server中实现相同的功能,我真的不知道如何实现这一点。
任何帮助都将受到高度赞赏。提前致谢
答案 0 :(得分:0)
扩展文档根目录可能就是你要找的东西(我假设你想从那里提供html / jsp页面)。
您必须使用以下条目和其他一些属性创建ibm-web.ext.xml
文件:
<file-serving-attribute name="extendedDocumentRoot" value="/yourpath/to/files" />
<jsp-attribute name="extendedDocumentRoot" value="/yourpath/to/files" />
查看Web container configuration for JavaServer Pages static file access了解详情。