easyui入门
ui框架
easyui=jquery+html4(用来做后台的管理界面)
案例:
1、通过layout布局
2、通过tree加载菜单
3、通过菜单去打开不同的tab页
导入jquery-easyui:
导入jar包:
然后建一个index.jsp(后台管理主界面)页面,先导入样式:
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath}/static/easyui5/themes/default/easyui.css ">
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath}/static/easyui5/themes/icon.css">
<script type="text/javascript"
src="${pageContext.request.contextPath}/static/easyui5/jquery.min.js"></script>
<script type="text/javascript"
src="${pageContext.request.contextPath}/static/easyui5/jquery.easyui.min.js"></script>
<!-- 导入index.js代码 -->
<script type="text/javascript"
src="${pageContext.request.contextPath}/static/js/index.js"></script>
先建一个实体类 TreeNode:
package com.xiaoyi.entity;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
*针对easyui属性展示的json格式串进行实体类描述
*/
public class TreeNode {
private String id;
private String text;
private List<TreeNode>children=new ArrayList<>();
private Map<String, Object> attributes=new HashMap<String, Object>();
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public List<TreeNode> getChildren() {
return children;
}
public void setChildren(List<TreeNode> children) {
this.children = children;
}
public Map<String, Object> getAttributes() {
return attributes;
}
public void setAttributes(Map<String, Object> attributes) {
this.attributes = attributes;
}
@Override
public String toString() {
return "TreeNode [id=" + id + ", text=" + text + ", children=" + children + ", attributes=" + attributes + "]";
}
}
MenuDao
package com.xiaoyi.dao;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.xiaoyi.entity.TreeNode;
import com.xiaoyi.util.JsonBaseDao;
import com.xiaoyi.util.JsonUtils;
import com.xiaoyi.util.PageBean;
import com.xiaoyi.util.StringUtils;
/**1.查询数据库所有数据 用于easyui的tree树形展示,(但是直接得来的书籍格式easyui不识别)
* 2.递归查询节点集合,形成子父节点关系,具备层次结构
* 3.转格式
*
*/
public class MenuDao extends JsonBaseDao{
/**List<TreeNode>加上objectMapper可以转化成easyUI的tree控件识别的json串
* @param map
* @param pageBean
* @return
* List<Map<String, Object>> -->{Menuid:001,Menuname:学生管理}
* 接下来需要递归查询子节点的集合存入当前节点
* @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.listMenu(map, pageBean);
List<TreeNode> listTreeNode= new ArrayList<TreeNode>();
this.listMapToTreeNode(listMenu, listTreeNode);
return listTreeNode;
}
public List<Map<String, Object>>listMenu(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 parentid="+id;
}else {
sql +=" and parentid=-1 ";
}
return super.executeQuery(sql, pageBean);
}
/**
* 需要将后台数据库查出来的数据格式转换成前台
* @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[]>chilMap=new HashMap<String, String[]>();
chilMap.put("Menuid", new String[] {treeNode.getId()});
//查询出当前节点所拥有的子节点的集合
List<Map<String, Object>> listMenu=this.listMenu(chilMap, null);
List<TreeNode> listTreeNode= new ArrayList<TreeNode>();
this.listMapToTreeNode(listMenu, listTreeNode);
treeNode.setChildren(listTreeNode);
}
public void listMapToTreeNode(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);
}
}
}
MenuAction
package com.xiaoyi.web;
import java.sql.SQLException;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.xiaoyi.dao.MenuDao;
import com.xiaoyi.entity.TreeNode;
import com.xiaoyi.util.ResponseUtil;
import com.zking.framework.ActionSupport;
public class MenuAction extends ActionSupport {
private MenuDao menuDao =new MenuDao();
public String menuTree(HttpServletRequest req,HttpServletResponse resp) throws JsonProcessingException, Exception {
try {
List<TreeNode>listTreeNode=this.menuDao.listTreeNode(req.getParameterMap(), null);
ObjectMapper om=new ObjectMapper();
ResponseUtil.write(resp, om.writeValueAsString(listTreeNode));
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
}
配置mvc文件:
<?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.xiaoyi.web.MenuAction">
</action>
<action path="/userAction" type="com.zking.web.UserAction">
<forward name="index" path="/index.jsp" redirect="false" />
<forward name="login" path="/login.jsp" redirect="false" />
</action>
</config>
再配置web文件
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>Pro_easyui</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>encodingFiter</filter-name>
<filter-class>com.xiaoyi.util.EncodingFiter</filter-class>
</filter>
<filter-mapping>
<filter-name>encodingFiter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<servlet>
<servlet-name>actionServlet</servlet-name>
<servlet-class>com.zking.framework.ActionServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>actionServlet</servlet-name>
<url-pattern>*.action</url-pattern>
</servlet-mapping>
</web-app>
index.js
$(function() {
$('#tt').tree({
url:'menuAction.action?methodName=menuTree',
onClick: function(node) {
//alert(node.attributes.menuURL);//在用户点击的时候提示
var content = '<iframe scrolling="no" frameborder="0" src="'+node.attributes.menuURL+'" width="99%" height="99%"></iframe>';if($("#menuTab").tabs('exists',node.text)){
$("#menuTab").tabs('select',node.text)
}else{
$('#menuTab').tabs('add',{
title:node.text,
content:content,
closable:true
});
}
}
});
})
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">
<!-- ctrl+shift+r查找本工作区间打开的工程中的文件 -->
<!-- 1.文件路径出错会导致样式改变 -->
<!-- 2. 顺序问题-->
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath}/static/easyui5/themes/default/easyui.css ">
<link rel="stylesheet" type="text/css"
href="${pageContext.request.contextPath}/static/easyui5/themes/icon.css">
<script type="text/javascript"
src="${pageContext.request.contextPath}/static/easyui5/jquery.min.js"></script>
<script type="text/javascript"
src="${pageContext.request.contextPath}/static/easyui5/jquery.easyui.min.js"></script>
<!-- 导入index.js代码 -->
<script type="text/javascript"
src="${pageContext.request.contextPath}/static/js/index.js"></script>
<title>后台管理主界面</title>
</head>
<body class="easyui-layout">
<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="height: 800px">
<div title="首页" style="padding:20px;display:none;">
默认展示效果
</div>
</div>
</div>
</body>
</html>