我怎样才能使用应用程序服务器 (Glassfish) 通过 Web 浏览器简单地公开本地 .html 文件?

How can I simply expose local .html files via web browser using an application server (Glassfish)?

假设我有一个 .html 文件目录,可由应用服务器访问,我想向用户显示,以便他们可以使用浏览器访问它们:

/import/tps-reports/index.html
/import/tps-reports/report1.html
/import/tps-reports/report2.html

有没有办法公开 tps-reports 目录来执行此操作,以便用户可以通过以下方式访问它们:

http://www.example.com/tps-reports/index.html
http://www.example.com/tps-reports/report1.html

此外,请记住 index.html 可能会引用其他页面:

<a href="report1.html">Report 1</a>

所以这些链接也需要有效。

这是一个可能的答案:

http://docs.oracle.com/cd/E19776-01/820-4496/geqpl/index.html

您可以设置备用文档根,以便某些 URI 模式指向不同的路径。

这些示例只是真正显示了相对路径...我想知道它 "ok" 是否可以使用它来引用本地文件系统。