首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
其他好文
> 详细
自定义标签
时间:
2015-02-27 16:44:16
阅读:
103
评论:
0
收藏:
0
[点我收藏+]
标签:
1.首先在web.xml中要引入标签tld:
/WEB-INF/jspSecurity.tld
/WEB-INF/jspSecurity.tld
2.jspSecurity.tld内容:
1.0
1.1
custTag
JspSecurity
类名
JspSecurityTag
elementName
true
true
JspSecurityByRole
类名
JspSecurityTagByRole
resourceName
true
true
3.类 public class JspSecurityTagByRole extends BodyTagSupport { private static final long serialVersionUID = -4745786903307048282L; // 页面元素(角色控制资源)的名称 private String resourceName; public String getResourceName() { return resourceName; } /** * 设置页面元素(角色控制资源)的名称 * @param str */ public void setResourceName(String str) { this.resourceName = str; } // 判断resourceName是否存在在用户的session中。如果是admin都能看见,其他只能看到自己的权限。如果admin分配的管理员看到的权限少,那么这个管理员能下发的也少了 // TODO 可以考虑是超级管理员就都可以看见所有链接 private boolean checkUserRoleId(BigDecimal str) { String role=String.valueOf(str); if (role.length() == 7) { role+="00"; } try { if ("admin".equals(this.pageContext.getSession().getAttribute(GlobalConstant.LOGON_ID)) || (str.intValue() < 10)) { return true; } Hashtable roleIdTable = (Hashtable) this.pageContext.getSession().getAttribute( "ROLE_ID_TABLE"); if (roleIdTable.get(role) == null) { return false; } } catch (Exception e) { return false; } return true; } // 校验用户的角色,是否可以增删改查,如果是超级管理员0,如果是普通操作员1,如果系统查询员2 // str 2是限制查询员的标签 private boolean checkUserRole(BigDecimal str) { // 如果是系统查询员遇到增删改按钮就不能显示按钮 if ((str.intValue() - 1 == 1) && str.intValue() == ((BigDecimal) (this.pageContext.getSession() .getAttribute(GlobalConstant.USER_ROLE))).intValue()) { return false; } return true; } // /** * 通过角色资源描述文件决定该页面标签是否显示 */ public int doAfterBody() { // System.out.println("-------------start---------------"); try { // System.out.println(this.getResourceName()); // System.out.println(this.checkUserRoleId(new BigDecimal(this.getResourceName()))); // System.out.println(this.checkUserRole(new BigDecimal(this.getResourceName()))); BigDecimal rn = new BigDecimal(this.getResourceName()); if (this.checkUserRoleId(rn) && bodyContent != null) { JspWriter out = bodyContent.getEnclosingWriter(); bodyContent.writeOut(out); } } catch (Exception e) { e.printStackTrace(); } // System.out.println("-------------end---------------"); return SKIP_BODY; } } 4.页面: 如:
‘);" />
5.页面也要引入 <%@ taglib uri="/WEB-INF/jspSecurity.tld" prefix="custTag"%>
自定义标签
标签:
原文地址:http://www.cnblogs.com/lele88lala/p/4303559.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
分布式事务
2021-07-29
OpenStack云平台命令行登录账户
2021-07-29
getLastRowNum()与getLastCellNum()/getPhysicalNumberOfRows()与getPhysicalNumberOfCells()
2021-07-29
【K8s概念】CSI 卷克隆
2021-07-29
vue3.0使用ant-design-vue进行按需加载原来这么简单
2021-07-29
stack栈
2021-07-29
抽奖动画 - 大转盘抽奖
2021-07-29
PPT写作技巧
2021-07-29
003-核心技术-IO模型-NIO-基于NIO群聊示例
2021-07-29
Bootstrap组件2
2021-07-29
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!