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.
私は次のことをしたいと思います
<div id="Grants the " + <bean:message key="label.foo/>/>
これはどのように行うことができますか?基本的に、bean:message を文字列に連結しています。
通常の HTML タグ内に Struts (およびその他の JSP タグ ライブラリ) タグを埋め込むことができます。
<div id="Grants the <bean:message key="label.foo"/>"/>
キーを持つメッセージ リソースにlabel.foo"Foo" というテキストがマップされている場合、結果は次のようになります。
label.foo
<div id="Grants the Foo"/>
idただし、これは属性の有効な値ではないことに注意してください。
id