我正在使用 html:image 标记在 jsp 中包含图像。图像位置在 struts 的消息资源属性文件中指定。路径之前定义为 ../../images/image1.gid。现在由于某种原因上下文正在发生变化,因此没有加载图像。如何访问消息资源文件中的上下文路径?我尝试了 key={0}/images/image1.gif,但这仅适用于 bean:message,因为它包含 arg0 属性。但我怎么做的形象?有什么办法吗?
PS:<img src=<bean:message arg0="<%=request.getContextPath()%>" key="image1"/>>
工作。但我无法更改使用 html:image 的 100 个 jsp 文件。
谢谢 V