如何在 jboss7 中配置静态上下文路径?
我正在尝试找到一种方法来配置 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来这在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