我正在尝试将图像加载到位于类路径上的“files”文件夹中的 jsp 中。
我尝试加载图像的 .jsp 的 URL 是 http://www.my-webapp.com/authenticated/dashboard 。问题是 jsp 正在“authenticated”文件夹中搜索“files”文件夹,而不是类路径。
这是我使用 Google Chrome 的“检查元素”时获得的 URL:
如何告诉我的 jsp 在类路径上搜索“files”文件夹,但不在“authenticated”文件夹中搜索?
我的struts.xml(如果需要):
<package name="account" namespace="/authenticated" extends="struts-default">
<action name="dashboard" class="DashLoader" method="execute">
<result name="success">/authenticated/dashboard.jsp</result>
</action>
</package>
谢谢
默认内容加载器允许您从类路径提供静态内容。此加载程序处理以 /static
开头的 URL。因此,如果将图像放在 files
包下的类路径中,则可以像 /static/files/image.jpg
一样访问它。
您可以在 Static Content 的文档中阅读有关静态内容加载器和配置设置的更多信息。 。
我是一名优秀的程序员,十分优秀!