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.
<html:hidden styleId="user" property="issueBranch" value='' /> For value ofを使用しています。<html:hidden>取得した値を設定したいのですが<bean:write name="sessionData" property="userId"/> 、これを行うにはどうすればよいですか?
<html:hidden styleId="user" property="issueBranch" value='' />
<html:hidden>
<bean:write name="sessionData" property="userId"/>
使用する
<html:hidden styleId="user" property="issueBranch"/>
JSP にディスパッチするアクションで、フォーム Bean のissueBranchプロパティを必要な値に設定します。
issueBranch
myActionForm.setIssueBranch(sessionData.getUserId());