在 Websphere Application Server 中添加外部上下文
Adding External Context in Websphere Application Server
我是 Websphere Application Server 的新手,我有一个托管在 Apache Tomcat 服务器 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 中实现相同的功能,但我真的不知道如何实现。
我们将不胜感激任何帮助。提前致谢
扩展文档根目录可能就是您要查找的内容(我假设您想从那里提供 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 了解更多详情。
我是 Websphere Application Server 的新手,我有一个托管在 Apache Tomcat 服务器 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 中实现相同的功能,但我真的不知道如何实现。
我们将不胜感激任何帮助。提前致谢
扩展文档根目录可能就是您要查找的内容(我假设您想从那里提供 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 了解更多详情。