easyui高级控件(1)

easyui(2)

权限

设置权限的目的:
是为了让不同的用户可以操作系统中不同资源,直接点说就是不同的用户可以看到左侧不同的菜单
菜单模板
在这里插入图片描述

权限树

一星权限(用户权限多对一)

  1. 长记性数据库脚本
  2. 建立实体类
  3. 创建dao
  4. web层创建
  5. 更改展示的树形菜单

弊端:一个菜单不能对应多个用户!
思考:我们想一个用户对应多个菜单
然后一个菜单可以对应多个用户
其实这就是user与menu的多对多的关系
思路
1、菜单不同的原因在于,利用不同menuid进行查询,原本默认查询的是所有菜单,是通过-1去查的;
2、menuid由来:是登录用户id查询中间表数据所得来的
在这里插入图片描述

二星权限(用户权限多对多)

  1. 执行数据库脚本
  2. 修改原有的实体类
  3. 建立实体类
  4. 创建dao
  5. 修改原有的dao
  6. 新增web的方法
  7. 新增登入界面,跳入前端树形菜单
    在这里插入图片描述
    MenuDao

package com.lrc.dao;

import java.sql.SQLException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import com.lrc.entity.TreeNode;
import com.lrc.util.JsonBaseDao;
import com.lrc.util.JsonUtils;
import com.lrc.util.PageBean;
import com.lrc.util.StringUtils;

/**
 * 1、查询数据库所有数据用于easyui的tree树形展示(但是直接得来的数据格式easyui不识别)
 * 2、递归查询节点集合,形成子父节点关系,具备层次结构
 * 3、转格式
 * @author Administrator
 *
 */
public class MenuDao extends JsonBaseDao {
	/**
	 * List<TreeNode>加上ObjectMapper可以转换成easyui的tree控件识别的json串
	 * @param map
	 * @param pageBean
	 * @return
	 * @throws SQLException 
	 * @throws IllegalAccessException 
	 * @throws InstantiationException 
	 */
	public List<TreeNode> listTreeNode(Map<String, String[]> map, PageBean pageBean) throws InstantiationException, IllegalAccessException, SQLException{
		List<Map<String, Object>> listMenu = this.listMenuAuth(map, pageBean);
		List<TreeNode> listTreeNode = new ArrayList<TreeNode>();
		this.listMapToListTreeNode(listMenu, listTreeNode);
		return listTreeNode;
	}
	
	/**
	 * 	按照不同用户登录,访问不同的菜单
	 * 	
	 * @param map
	 * @param pageBean
	 * @return
	 * @throws InstantiationException
	 * @throws IllegalAccessException
	 * @throws SQLException
	 */
	public List<Map<String,Object>> listMenuAuth(Map<String, String[]> map, PageBean pageBean) throws InstantiationException, IllegalAccessException, SQLException{
		String sql = "select * from t_easyui_menu where true ";
		String id = JsonUtils.getParamVal(map, "Menuid");
		if(StringUtils.isNotBlank(id)) {
//			当前节点的ID当作子节点父ID进行查询
			sql += " and menuid in ("+id+") ";
		}else {
			sql += " and menuid=000";
		}
		return super.executeQuery(sql, pageBean);
	}
	
	/**
	 * 需要将后台数据库查出来的数据格式转换成前台easyui所识别的数据
	 * @param map
	 * @param treeNode
	 * @throws SQLException 
	 * @throws IllegalAccessException 
	 * @throws InstantiationException 
	 */
	public void mapToTreeNode(Map<String,Object> map, TreeNode treeNode) throws InstantiationException, IllegalAccessException, SQLException {
		treeNode.setId(map.get("Menuid").toString());
		treeNode.setText(map.get("Menuname").toString());
		treeNode.setAttributes(map);
		
//		treeNode.setChildren(children);
		Map<String, String[]> childMap = new HashMap<String, String[]>();
		childMap.put("Menuid", new String[] {treeNode.getId()});
//		查询出当前节点所拥有的子节点的集合
		List<Map<String, Object>> listMenu = this.listMenuAuth(childMap, null);
		List<TreeNode> listTreeNode = new ArrayList<TreeNode>();
		this.listMapToListTreeNode(listMenu, listTreeNode);
		treeNode.setChildren(listTreeNode);
	}
	
	public void listMapToListTreeNode(List<Map<String, Object>> list, List<TreeNode> listTreeNode) throws InstantiationException, IllegalAccessException, SQLException {
		TreeNode treeNode = null;
		for (Map<String, Object> map : list) {
			treeNode = new TreeNode();
			this.mapToTreeNode(map, treeNode);
			listTreeNode.add(treeNode);
		}
	}
}


UserDao


package com.lrc.dao;

import java.util.List;
import java.util.Map;

import com.lrc.util.JsonBaseDao;
import com.lrc.util.JsonUtils;
import com.lrc.util.PageBean;
import com.lrc.util.StringUtils;


public class UserDao extends JsonBaseDao {
	/**
	 * 查询用户分页列表
	 *用户登录
	 */
	public List<Map<String, Object>> list(Map<String,String[]> map,PageBean pageBean) throws Exception{
		String sql="select * from t_easyui_user_version2 where true ";
		String uid=JsonUtils.getParamVal(map, "uid");
		String upwd=JsonUtils.getParamVal(map, "upwd");
		if(StringUtils.isNotBlank(uid)) {
			sql +="and uid = "+uid;
		}
		if(StringUtils.isNotBlank(upwd)) {
			sql +=" and upwd ="+upwd;
		}
		return super.executeQuery(sql, pageBean);
	}
	
	//通过用户登录的唯一账号获取用户在权限中间表中获取菜单id的集合
	public List<Map<String, Object>> getMenusByUser(Map<String,String[]> map,PageBean pageBean) throws Exception{
		String sql="select * from t_easyui_usermenu where true ";
		String uid=JsonUtils.getParamVal(map, "uid");
		if(StringUtils.isNotBlank(uid)) {
			sql +="and uid = "+uid;
		}
		
		return super.executeQuery(sql, pageBean);
	}
	
	
	
	
	
}

UserAction


package com.lrc.web;

import java.util.List;
import java.util.Map;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.lrc.dao.UserDao;
import com.lrc.framework.ActionSupport;
import com.lrc.util.PageBean;

public class UserAction extends ActionSupport {
	private UserDao userDao = new UserDao();

	public String login(HttpServletRequest req, HttpServletResponse resp) throws Exception {
		String code="index";
		// 登录
		try {
			List<Map<String, Object>> list = this.userDao.list(req.getParameterMap(), null);
				if (list!=null && list.size() == 1) {// 用户存在
					List<Map<String, Object>> menuList=this.userDao.getMenusByUser(req.getParameterMap(), null);
					StringBuilder sd=new StringBuilder();
					for (Map<String, Object> map : menuList) {
						sd.append(","+map.get("menuId"));
					}
					req.setAttribute("menuIds", sd.substring(1));
				} else {//用户不存在
					req.setAttribute("msg", "用户不存在");
					code="login";
				}
		} catch (Exception e) {
			e.printStackTrace();
			code="login";
		}
		return code;
	}

}

login.jsp


<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>登录</title>
</head>
<body>
<form action="${pagecontext.request.contextPath }/userAction.action?methodName=login methos="post"></form>
uid:<input type="text" name="uid"><br>
upwd:<input type="text" name="upwd">
<input type="submit" value="ok">

</body>
</html>

index.js


$(function() {
	$('#tt').tree({    
	    url:'menuAction.action?methodName=menuTree&&Menuid='+$("#menuIds").val() , 
	    	onClick: function() {
	    		alert(node.text);//用户点击的时候提示一下
	    		// add a new tab panel    
	    		var content = '<iframe scrolling="no" frameborder="0" src="'+node.attributes.menuURL+'" width="99%" height="99%"></iframe>';
	    		if($('#tt').tabs('exists',node.text)){//存在实行选项卡定位操作
	    			$('#tt').tabs('select',node.text);
	    		}else{//不存在实行添加操作
	    			$('#menuTab').tabs('add',{    
		    		    title:node.text,    
		    		    content:content,    
		    		    closable:true,    
//		    		    tools:[{    
//		    		        iconCls:'icon-mini-refresh',    
//		    		        handler:function(){    
//		    		            alert('refresh');    
//		    		        }    
//		    		    }]    
		    		});
	    		}
	    		
			}
	});
	
})

index.jsp


<%@ page language="java" contentType="text/html; charset=utf-8"
	pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>后台主界面</title>
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath }/static/js/public/easyui5/themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath }/static/js/public/easyui5/themes/icon.css">
<script type="text/javascript" src="${pageContext.request.contextPath }/static/js/public/easyui5/jquery.min.js"></script>
<script type="text/javascript" src="${pageContext.request.contextPath }/static/js/public/easyui5/jquery.easyui.min.js"></script>
<script type="text/javascript" src="${pageContext.request.contextPath }/static/js/index.js"></script>
</head>
<body class="easyui-layout">
<input type="hidden" id="menuIds" value="${menuIds }">

	<div data-options="region:'north',border:false" style="height:60px;background:#B3DFDA;padding:10px">north region</div>
	<div data-options="region:'west',split:true,title:'West'" style="width:150px;padding:10px;">
	<ul id="tt"></ul>
	</div>
	<div data-options="region:'east',split:true,collapsed:true,title:'East'" style="width:100px;padding:10px;">east region</div>
	<div data-options="region:'south',border:false" style="height:50px;background:#A9FACD;padding:10px;">south region</div>
	<div data-options="region:'center',title:'Center'">
	<div id="menuTab" class="easyui-tabs" style="">   
    <div title="首页" style="padding:20px;display:none;">   
        welcome to here!!!
    </div>   
     
</div>
	
	</div>
</body>

</html>

mvc.xml


<?xml version="1.0" encoding="UTF-8"?>
<config>
	<!-- <action path="/regAction" type="test.RegAction">
		<forward name="failed" path="/reg.jsp" redirect="false" />
		<forward name="success" path="/login.jsp" redirect="true" />
	</action> -->
	
	<action path="/menuAction" type="com.lrc.web.MenuAction">
	</action>
	<action path="/userAction" type="com.lrc.web.UserAction">
	<forward name="index" path="/index.jsp" redirect="false" />
	<forward name="login" path="/login.jsp" redirect="false" />
	</action>
</config>

在这里插入图片描述

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值