如何从 Struts2 中的属性文件获取源路径和备用文本值以插入图像? Struts1 altKey 和 srcKey 用于此

How to get source path and alternate text values from properties file in Struts2 for inserting images? In Struts1 altKey and srcKey were used for this

我想知道 Struts 中 <html:img> 标签中 altKeysrcKey 属性的替换内容 2.

我想要实现的是能够插入带有来自属性文件 的源路径的图像。类似于 srcKey 在 Struts1.

中的作用

甚至对于替代文本,我想知道如何从 Struts1.

中的 altKey 等属性文件中获取它
<s:url var="url" value="/image/test.jpg"/>
<img src="${url}" border="0" alt="Test">

这可行,但这里直接提到了图像的来源。我想从属性文件中获取该值。

我想将下面的代码迁移到 Struts 2. 我该怎么做?

<html:img width="10" height="10" align="middle" altKey="alt.logo" srcKey="image.logo" />

您的操作 class 应该扩展 ActionSupport。然后你可以使用像

这样的东西
<s:url var="url" value="%{getText('image.logo')}"/>
<img src="${url}" border="0" alt="<s:text name='alt.logo'/>">