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.
以下のコードを使用する
<%! int role; > <% UserMasterDTO userMasterDTO=(UserMasterDTO)session.getAttribute("userMasterDTO"); role = userMasterDTO.getRole(); %>
この値をstrutsifタグで読み取らせたい。これを達成する方法は? 以下のコードは正しい方法ではありませんか?
<s:if test="role == 1">
struts 2.x'if'タグを試してください:
<s:if test="#session.userMasterDTO.role==1">
また
<s:set name='role' value=xxxx>
jsp/templateでJavaコードを使用しないことは良い習慣です。