Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 ApplicationResource.properties 文件中,我可以使用“welcome.message="Welcome"”之类的内容
我会在我的jsp页面中生成它......
<h3><bean:message key="welcome.message"/></h3>
但是比如说,我有很多 html 要生成,比如那个部分的列表和列表项......
我该怎么做?
没有什么可以阻止您在属性文件中提供整个 HTML 代码。例如,如果您希望文本显示为粗体,您可以这样做<B>Bold Text</B>。因此,对于您的选择框,您可以将整组 HTML 标记放在一个属性中,并将其设置在您想要设置的位置。
<B>Bold Text</B>
至于动态内容,您可以在操作类中获取对象列表,然后使用struts UI 标签创建列表或您想要的任何内容。