如何在 jBoss AS 7 中配置静态资源

发布于 2024-12-21 21:18:55 字数 999 浏览 3 评论 0原文

我想将图像上传到服务器,将它们存储在文件系统(服务器外部)中,然后将它们显示在我的 JSF 页面上。

我想找到这样的东西:

<?xml version="1.0" encoding="UTF-8"?>
<Context allowLinking="true" cookies="true" crossContext="true" override="true">
    <Resources allowLinking="true"
        className="com.triplemind.site.engine.SourceResolverContext"
        homeDir="/home/myapp/files" />
</Context>   

我找到了一些解决方案,但我想知道是否有更好的方法来做到这一点。

  1. 在 JBOSS AS 7 中配置静态资源(未回答)
  2. AS7 中 context.xml 的替换?访问外部文件 WAR?(未回答)

我找到了jBoss文档:

  1. 静态资源元素
  2. AdminGuide容器配置

任何帮助将不胜感激。提前致谢

I'd like to upload images to the server, store them in file system (outside server) and then display them on my JSF page.

I'd like to find something like this:

<?xml version="1.0" encoding="UTF-8"?>
<Context allowLinking="true" cookies="true" crossContext="true" override="true">
    <Resources allowLinking="true"
        className="com.triplemind.site.engine.SourceResolverContext"
        homeDir="/home/myapp/files" />
</Context>   

I found some solutions, but I wonder if there is a better way to do this.

  1. Configure static resources in JBOSS AS 7 (not answered)
  2. Replacement for context.xml in AS7? Access files outside the
    WAR?
    (not answered)

There are jBoss documentation I've found:

  1. The static-resources element
  2. AdminGuide Container Configuration

Any help will be appreciated. Thanks in advance

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

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

发布评论

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

评论(2

哀由 2024-12-28 21:18:55

Finally, I've decided to use FileServlet implemented by BalusC (link). This solution suits me for now. I've only changed its basePath to some certain path on my server.

明天过后 2024-12-28 21:18:55

JBoss 论坛上记录的此方法适用于我们从展开的文件夹加载所有静态资源 - 该文件夹必须位于 JBOSS_HOME 但至少未打包在 EAR/WAR 中。

我必须创建一个名为的模块文件 com/mycompany/main 并在其中添加所有图像。

跳过步骤 3 并使用步骤 4。 (Manifest.MF 条目 - 有效)

加载图像

现在使用URL imgUrl = this.getClass().getClassLoader().getResource("myimage.jpg");

This method documented on the JBoss forums works for us in loading all the static resources from an exploded folder - which has to sit within JBOSS_HOME but at least not packaged in EAR/WAR.

https://community.jboss.org/wiki/HowToPutAnExternalFileInTheClasspath

I had to create a module folder called com/mycompany/main and add all the images in there.

Skip step 3 and use step 4 instead. (Manifest.MF entry - which works)

The image is now loaded using

URL imgUrl = this.getClass().getClassLoader().getResource("myimage.jpg");

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