我正在尝试将图像加载到位于类路径上的“文件”文件夹中的我的 jsp 中。
我尝试加载图像的 .jsp 的 URL 是http://www.my-webapp.com/authenticated/dashboard。问题是 jsp 正在搜索“已验证”文件夹中的“文件”文件夹,而不是类路径。
这是我使用 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>
谢谢