gpt4 book ai didi

wildfly - 如何配置 Wildfly 来提供静态内容(如图像)?

转载 作者:行者123 更新时间:2023-12-02 02:39:49 27 4
gpt4 key购买 nike

我有一个在 Wildfly 8.0.0 Final 上运行的 JavaEE 应用程序。

应用程序使用了很多图像,我不想将它们存储在数据库中,因此将它们写入硬盘。

如何配置 Wildfly/Undertow 以便在某个 URL 上提供这些文件 (/var/images),例如 http://localhost:8080/myapplication/imagesFromDisk

最佳答案

在standalone.xml中向undertow子系统添加另一个文件处理程序和另一个位置:

<server name="default-server">
<http-listener name="default" socket-binding="http"/>
<host name="default-host" alias="localhost">
<location name="/" handler="welcome-content"/>
<location name="/img" handler="images"/>
</host>
</server>
<handlers>
<file name="welcome-content" path="${jboss.home.dir}/welcome-content" directory-listing="true"/>
<file name="images" path="/var/images" directory-listing="true"/>
</handlers>

关于wildfly - 如何配置 Wildfly 来提供静态内容(如图像)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22684037/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com