「Spring」c:setタグの使い方

属性
var: 変数
scope: page,request,session,application
target:propertyを持つオブジェクト名
value:値
property:プロパティ名


1.値を設定する
<c:set var="username" value="yamada" />
<c:set var="profile"><div> test message</div></c:set>

2.値を出力する
<c:out value="${username}" />
<c:out value="${profile}" />

Software

Posted by arkgame