1.在jsp 页面取session 中Map<String,Boolean> 对象pStatus.
<!-- 权限控制--> <c:if test="${pStatus[‘userRole-update‘]==true}"> <input type="button" value="修改" onclick="if(confirm(‘确定修改?‘))updateUserRole(‘user‘,‘used_roles‘)"> </c:if>
if 中的map对象的key 要加单引号,表示key 为字符串. 在jstl 中map 的key 默认为Long 类型.假如不加 ‘‘ 转为字符串,则会抛出类型转换的异常.
java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Long
时间: 2024-10-05 18:17:52