gpt4 book ai didi

Spring : serving static resources outside context root

转载 作者:IT老高 更新时间:2023-10-28 13:47:32 24 4
gpt4 key购买 nike

在网络应用程序中,我需要提供位于应用程序上下文目录之外的静态内容(图像)。整个应用程序架构需要我使用 Tomcat 来执行此操作。我以为我可以从 Spring 的 <mvc:resources> 中受益配置应用程序 URL 和目录内容之间的映射。但是AFAIK是mapping属性仅处理上下文相关或类路径映射。因此,我想使用什么:

<mvc:resources location="/images/**" mapping="/absolute/path/to/image/dir"/>

不起作用。由于我宁愿避免编写简单的文件传输 servlet,如果有人能给我一些关于现有基于 Spring 的解决方案/解决方法的指示,我会很高兴。

非常感谢。

荷马

最佳答案

<mvc:resources>可以从外部提供资源,你需要使用通常的Spring resource path syntax :

<mvc:resources mapping="/images/**" location="file:/absolute/path/to/image/dir/"/> 

关于 Spring : serving static resources outside context root,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5456635/

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