如何在 jboss7 中配置静态上下文路径?

发布于 2024-12-12 08:44:48 字数 834 浏览 0 评论 0原文

我正在尝试找到一种方法来配置 jboss7 中的静态上下文路径。我们正在从 jboss4.2 升级,在该版本中,我们在 server.xml 中有一个配置元素,如下所示:

   <Host name="localhost"
       autoDeploy="false" deployOnStartup="false" deployXML="false"
       configClass="org.jboss.web.tomcat.security.config.JBossContextConfig"
       >

        <Context path="/directory/pdf"
                docBase="/tmp/pdfdok"
                reloadable="true">
        </Context>

它位于目录 deploy\jboss-web.deployer 中。

这样做的目的是能够使用如下 URL 访问目录 /tmp/pdfdok: http://server :port/directory/pdf 或更准确地说,使用以下 url 访问此目录上生成的 pdf 文档: http://server:port/directory/pdf/pdfdoc.pdf 从客户端弹出窗口。

这里有人可以帮助我吗?

谢谢

符文

I am trying to find a way to configure a static context path i jboss7. We are upgrading from jboss4.2 and in that version we had a config element in server.xml that looked like this:

   <Host name="localhost"
       autoDeploy="false" deployOnStartup="false" deployXML="false"
       configClass="org.jboss.web.tomcat.security.config.JBossContextConfig"
       >

        <Context path="/directory/pdf"
                docBase="/tmp/pdfdok"
                reloadable="true">
        </Context>

It was in the directory deploy\jboss-web.deployer.

The intention of this is to be able to reach the directory /tmp/pdfdok with a url like this: http://server:port/directory/pdf or more exactly to reach a generated pdf document on this directory with the url: http://server:port/directory/pdf/pdfdoc.pdf from a client popup window.

Is there someone here who can help me?

Thanks

Rune

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等风也等你 2024-12-19 08:44:48

看来这在jboss7中是不可能做到的。我通过使用 fileservlet 解决了我的问题。这是一个很好的页面,可以作为示例: http://balusc.blogspot.com /2007/07/fileservlet.html

It seems like this is impossible to do in jboss7. I solved my problem by using a fileservlet instead. This is a good page to look at for an example: http://balusc.blogspot.com/2007/07/fileservlet.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文