SpringBoot+Thymeleaf配置员工管理系统

1.搭建环境

1.1创建一个Springboot项目(添加Spring WEB依赖)
1.2新建相关的实体类
  1. config层
  2. controller层
  3. pojo层
  4. dao层
1.3引入Thymeleaf的jar包
<!--Thymeleaf 2.x-->
<dependency>
    <groupId>org.thymeleaf</groupId>
    <artifactId>thymeleaf-spring5</artifactId>
</dependency>
<dependency>
    <groupId>org.thymeleaf.extras</groupId>
    <artifactId>thymeleaf-extras-java8time</artifactId>
</dependency>
1.4测试项目是否能够运行
  1. 在templates目录下新建一个index.html首页(测试完之后删除)

  2. 编写Controller类测试运行

    package com.ddf.controller;
    
    import org.springframework.stereotype.Controller;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    @Controller
    public class MyController {
    
        @RequestMapping("/index")
        public String index(){
            return "index";
        }
    }
    

2.模拟数据库在类中建表

  1. 新建实体类Department(部门表)、Employee(员工表)

    package com.ddf.pojo;
    
    //部门表
    public class Department {
    
        private Integer id;
        private String departmentName;
    
        public Department(){}
    
        public Department(Integer id, String departmentName) {
            this.id = id;
            this.departmentName = departmentName;
        }
    
        public Integer getId() {
            return id;
        }
    
        public void setId(Integer id) {
            this.id = id;
        }
    
        public String getDepartmentName() {
            return departmentName;
        }
    
        public void setDepartmentName(String departmentName) {
            this.departmentName = departmentName;
        }
    }
    
    package com.ddf.pojo;
    
    import java.util.Date;
    
    //员工表
    public class Employee {
    
        private Integer id;
        private String lastName;
        private String email;
        private Integer gender; //0:女  1:男
    
        private Department department;
        private Date birth;
    
        public Employee(){}
    
        public Employee(Integer id, String lastName, String email, Integer gender, Department department) {
            this.id = id;
            this.lastName = lastName;
            this.email = email;
            this.gender = gender;
            this.department = department;
            //默认的创建日期
            this.birth = new Date();
        }
    
    
        public Integer getId() {
            return id;
        }
    
        public void setId(Integer id) {
            this.id = id;
        }
    
        public String getLastName() {
            return lastName;
        }
    
        public void setLastName(String lastName) {
            this.lastName = lastName;
        }
    
        public String getEmail() {
            return email;
        }
    
        public void setEmail(String email) {
            this.email = email;
        }
    
        public Integer getGender() {
            return gender;
        }
    
        public void setGender(Integer gender) {
            this.gender = gender;
        }
    
        public Department getDepartment() {
            return department;
        }
    
        public void setDepartment(Department department) {
            this.department = department;
        }
    
        public Date getBirth() {
            return birth;
        }
    
        public void setBirth(Date birth) {
            this.birth = birth;
        }
    }
    
  2. 新建Dao层:DepartmentDao、EmployeeDao

    package com.ddf.dao;
    
    import com.ddf.pojo.Department;
    import org.springframework.stereotype.Repository;
    
    import java.util.Collection;
    import java.util.HashMap;
    import java.util.Map;
    
    //部门Dao
    @Repository
    public class DepartmentDao {
    
        //模拟数据库中的数据
    
        private static Map<Integer, Department> departments = null;
    
        static {
            departments = new HashMap<Integer, Department>();//创建一个部门表
            departments.put(101,new Department(101,"教学部"));
            departments.put(102,new Department(102,"市场部"));
            departments.put(103,new Department(103,"教研部"));
            departments.put(104,new Department(104,"运营部"));
            departments.put(105,new Department(105,"后勤部"));
        }
    
        //获取所有部门信息
        public Collection<Department> getDepartment(){
            return departments.values();
        }
    
        //通过id得到部门
        public Department getDepartmentById(Integer id){
            return departments.get(id);
        }
    }
    
    package com.ddf.dao;
    
    import com.ddf.pojo.Department;
    import com.ddf.pojo.Employee;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.stereotype.Repository;
    
    import java.util.Collection;
    import java.util.HashMap;
    import java.util.Map;
    
    //员工Dao
    @Repository
    public class EmployeeDao {
        //模拟数据库中的数据
        private static Map<Integer, Employee> employees = null;
        //员工有所属的部门
        @Autowired
        private DepartmentDao departmentDao;
    
        static {
            employees = new HashMap<Integer, Employee>();//创建一个部门表
    
            employees.put(1001,new Employee(1001,"AA","A814655997@qq.com",0,new Department(101,"教学部")));
            employees.put(1002,new Employee(1002,"BB","B814655997@qq.com",1,new Department(102,"市场部")));
            employees.put(1003,new Employee(1003,"CC","C814655997@qq.com",0,new Department(103,"教研部")));
            employees.put(1004,new Employee(1004,"DD","D814655997@qq.com",1,new Department(104,"运营部")));
            employees.put(1005,new Employee(1005,"EE","E814655997@qq.com",0,new Department(105,"后勤部")));
        }
    
        //主键自增!
        private static Integer initId = 1006;
        //增加一个员工
        public void save(Employee employee){
            if(employee.getId() == null){
                employee.setId(initId++);
            }
    
            employee.setDepartment(departmentDao.getDepartmentById(employee.getDepartment().getId()));
            //把员工添加到数据库中
            employees.put(employee.getId(),employee);
        }
    
        //查询全部员工信息
        public Collection<Employee> getAll(){
            return employees.values();
        }
    
        //通过Id查询员工
        public Employee getEmployeeById(Integer id){
            return employees.get(id);
        }
        //删除员工通过id
        public void delete(Integer id){
            employees.remove(id);
        }
    }
    

3.首页的实现

3.1引入静态资源

在这里插入图片描述

  1. index.html

    <!DOCTYPE html>
    <html lang="en" xmlns:th="http://www.thymeleaf.org">
    	<head>
    		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    		<meta name="description" content="">
    		<meta name="author" content="">
    		<title>Signin Template for Bootstrap</title>
    		<!-- Bootstrap core CSS -->
    		<link th:href="@{/css/bootstrap.min.css}" rel="stylesheet">
    		<!-- Custom styles for this template -->
    		<link th:href="@{/css/signin.css}" rel="stylesheet">
    	</head>
    
    	<body class="text-center">
    		<form class="form-signin" th:action="@{/user/login}">
    			<img class="mb-4" th:src="@{/img/bootstrap-solid.svg}" alt="" width="72" height="72">
    			<h1 class="h3 mb-3 font-weight-normal" th:text="#{login.tip}">Please sign in</h1>
    			<!--如果msg的值为空就不显示-->
    			<p style="color:red" th:text="${msg}" th:if="${not #strings.isEmpty(msg) }"></p>
    
    			<label class="sr-only" th:text="#{login.username}">Username</label>
    			<input type="text" class="form-control" name="username" th:placeholder="#{login.username}" required="" autofocus="">
    			<label class="sr-only" th:text="#{login.password}">Password</label>
    			<input type="password" class="form-control" name="password" th:placeholder="#{login.password}" required="">
    			<div class="checkbox mb-3">
    				<label>
              <input type="checkbox" value="remember-me" > [[#{login.remember}]]
            </label>
    			</div>
    			<button class="btn btn-lg btn-primary btn-block" type="submit" >[[#{login.btn}]]</button>
    			<p class="mt-5 mb-3 text-muted">© 2017-2018</p>
    			<!--连接请求-->
    			<a class="btn btn-sm" th:href="@{/index.html(l='zh_CN')}">中文</a>
    			<a class="btn btn-sm" th:href="@{/index.html(l='en_US')}">English</a>
    		</form>
    	</body>
    </html>
    
  2. list.html

    <!DOCTYPE html>
    <!-- saved from url=(0052)http://getbootstrap.com/docs/4.0/examples/dashboard/ -->
    <html lang="en" xmlns:th="http://www.themeleaf.org">
    
    	<head>
    		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    		<meta name="description" content="">
    		<meta name="author" content="">
    
    		<title>Dashboard Template for Bootstrap</title>
    		<!-- Bootstrap core CSS -->
    		<link th:href="@{/css/bootstrap.min.css}" rel="stylesheet">
    
    		<!-- Custom styles for this template -->
    		<link th:href="@{/css/dashboard.css}" rel="stylesheet">
    		<style type="text/css">
    			/* Chart.js */
    			
    			@-webkit-keyframes chartjs-render-animation {
    				from {
    					opacity: 0.99
    				}
    				to {
    					opacity: 1
    				}
    			}
    			
    			@keyframes chartjs-render-animation {
    				from {
    					opacity: 0.99
    				}
    				to {
    					opacity: 1
    				}
    			}
    			
    			.chartjs-render-monitor {
    				-webkit-animation: chartjs-render-animation 0.001s;
    				animation: chartjs-render-animation 0.001s;
    			}
    		</style>
    	</head>
    
    	<body>
    	<div th:replace="~{commons/commons::topbar}"></div>
    <!--	<div th:insert="~{commons/commons::topbar}"></div>-->
    		<div class="container-fluid">
    			<div class="row">
    
    				<div th:replace="~{commons/commons::sidebar(active='list.html')}"></div>
    
    				<main role="main" class="col-md-9 ml-sm-auto col-lg-10 pt-3 px-4">
    					<h2><a class="btn btn-sm btn-success" th:href="@{/emp}">添加员工</a></h2>
    					<div class="table-responsive">
    						<table class="table table-striped table-sm">
    							<thead>
    								<tr>
    									<th>id</th>
    									<th>lastName</th>
    									<th>email</th>
    									<th>gender</th>
    									<th>department</th>
    									<th>birth</th>
    									<th>操作</th>
    								</tr>
    							</thead>
    							<tbody>
    								<tr th:each="emp:${emps}">
    									<td th:text="${emp.getId()}"></td>
    									<td th:text="${emp.getLastName()}"></td>
    									<td th:text="${emp.getEmail()}"></td>
    									<td th:text="${emp.getGender()==0?'':''}"></td>
    									<td th:text="${emp.department.getDepartmentName()}"></td>
    									<!--#dates.format可以转换成日期格式-->
    									<td th:text="${#dates.format(emp.getBirth(),'yyyy-MM-dd')}"></td>
    									<td>
    <!--										<a class="btn btn-sm btn-primary" th:href="@{/upemp(id=${emp.getId()})}">编辑</a>-->
    										<a class="btn btn-sm btn-primary" th:href="@{/upemp/} + ${emp.getId()}">编辑</a>
    										<a class="btn btn-sm btn-danger" th:href="@{/deleteEmp/} + ${emp.getId()}">删除</a>
    									</td>
    								</tr>
    
    							</tbody>
    						</table>
    					</div>
    				</main>
    			</div>
    		</div>
    
    		<!-- Bootstrap core JavaScript
        ================================================== -->
    		<!-- Placed at the end of the document so the pages load faster -->
    		<script type="text/javascript" src="asserts/js/jquery-3.2.1.slim.min.js"></script>
    		<script type="text/javascript" src="asserts/js/popper.min.js"></script>
    		<script type="text/javascript" src="asserts/js/bootstrap.min.js"></script>
    
    		<!-- Icons -->
    		<script type="text/javascript" src="asserts/js/feather.min.js"></script>
    		<script>
    			feather.replace()
    		</script>
    
    		<!-- Graphs -->
    		<script type="text/javascript" src="asserts/js/Chart.min.js"></script>
    		<script>
    			var ctx = document.getElementById("myChart");
    			var myChart = new Chart(ctx, {
    				type: 'line',
    				data: {
    					labels: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
    					datasets: [{
    						data: [15339, 21345, 18483, 24003, 23489, 24092, 12034],
    						lineTension: 0,
    						backgroundColor: 'transparent',
    						borderColor: '#007bff',
    						borderWidth: 4,
    						pointBackgroundColor: '#007bff'
    					}]
    				},
    				options: {
    					scales: {
    						yAxes: [{
    							ticks: {
    								beginAtZero: false
    							}
    						}]
    					},
    					legend: {
    						display: false,
    					}
    				}
    			});
    		</script>
    	</body>
    </html>
    
  3. dashboard.html

    <!DOCTYPE html>
    <!-- saved from url=(0052)http://getbootstrap.com/docs/4.0/examples/dashboard/ -->
    <html lang="en" xmlns:th="http://www.themeleaf.org">
    	<head>
    		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    		<meta name="description" content="">
    		<meta name="author" content="">
    
    		<title>Dashboard Template for Bootstrap</title>
    		<!-- Bootstrap core CSS -->
    		<link th:href="@{/css/bootstrap.min.css}" rel="stylesheet">
    
    		<!-- Custom styles for this template -->
    		<link th:href="@{/css/dashboard.css}" rel="stylesheet">
    		<style type="text/css">
    			/* Chart.js */
    			
    			@-webkit-keyframes chartjs-render-animation {
    				from {
    					opacity: 0.99
    				}
    				to {
    					opacity: 1
    				}
    			}
    			
    			@keyframes chartjs-render-animation {
    				from {
    					opacity: 0.99
    				}
    				to {
    					opacity: 1
    				}
    			}
    			
    			.chartjs-render-monitor {
    				-webkit-animation: chartjs-render-animation 0.001s;
    				animation: chartjs-render-animation 0.001s;
    			}
    		</style>
    	</head>
    
    	<body>
    	<!--顶部导航栏-->
    	<div th:replace="~{commons/commons::topbar}"></div>
    <!--	<div th:insert="~{commons/commons::topbar}"></div>-->
    		<div class="container-fluid">
    			<div class="row">
    				<!--侧边栏-->
    				<!--传递参数给组件-->
    				<div th:replace="~{commons/commons::sidebar(active='main.html')}"></div>
    
    				<main role="main" class="col-md-9 ml-sm-auto col-lg-10 pt-3 px-4">
    					<div class="chartjs-size-monitor" style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px; overflow: hidden; pointer-events: none; visibility: hidden; z-index: -1;">
    						<div class="chartjs-size-monitor-expand" style="position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1;">
    							<div style="position:absolute;width:1000000px;height:1000000px;left:0;top:0"></div>
    						</div>
    						<div class="chartjs-size-monitor-shrink" style="position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1;">
    							<div style="position:absolute;width:200%;height:200%;left:0; top:0"></div>
    						</div>
    					</div>
    					<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pb-2 mb-3 border-bottom">
    						<h1 class="h2">Dashboard</h1>
    						<div class="btn-toolbar mb-2 mb-md-0">
    							<div class="btn-group mr-2">
    								<button class="btn btn-sm btn-outline-secondary">Share</button>
    								<button class="btn btn-sm btn-outline-secondary">Export</button>
    							</div>
    							<button class="btn btn-sm btn-outline-secondary dropdown-toggle">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-calendar"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>
                    This week
                  </button>
    						</div>
    					</div>
    
    					<canvas class="my-4 chartjs-render-monitor" id="myChart" width="1076" height="454" style="display: block; width: 1076px; height: 454px;"></canvas>
    
    					
    				</main>
    			</div>
    		</div>
    
    		<!-- Bootstrap core JavaScript
        ================================================== -->
    		<!-- Placed at the end of the document so the pages load faster -->
    		<script type="text/javascript" src="asserts/js/jquery-3.2.1.slim.min.js" ></script>
    		<script type="text/javascript" src="asserts/js/popper.min.js" ></script>
    		<script type="text/javascript" src="asserts/js/bootstrap.min.js" ></script>
    
    		<!-- Icons -->
    		<script type="text/javascript" src="asserts/js/feather.min.js" ></script>
    		<script>
    			feather.replace()
    		</script>
    
    		<!-- Graphs -->
    		<script type="text/javascript" src="asserts/js/Chart.min.js" ></script>
    		<script>
    			var ctx = document.getElementById("myChart");
    			var myChart = new Chart(ctx, {
    				type: 'line',
    				data: {
    					labels: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
    					datasets: [{
    						data: [15339, 21345, 18483, 24003, 23489, 24092, 12034],
    						lineTension: 0,
    						backgroundColor: 'transparent',
    						borderColor: '#007bff',
    						borderWidth: 4,
    						pointBackgroundColor: '#007bff'
    					}]
    				},
    				options: {
    					scales: {
    						yAxes: [{
    							ticks: {
    								beginAtZero: false
    							}
    						}]
    					},
    					legend: {
    						display: false,
    					}
    				}
    			});
    		</script>
    	</body>
    </html>
    
  4. 404.html

    <!DOCTYPE html>
    <!-- saved from url=(0052)http://getbootstrap.com/docs/4.0/examples/dashboard/ -->
    <html lang="en" xmlns:th="http://www.themeleaf.org">
    	<head>
    		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    		<meta name="description" content="">
    		<meta name="author" content="">
    
    		<title>Dashboard Template for Bootstrap</title>
    		<!-- Bootstrap core CSS -->
    		<link th:href="@{/css/bootstrap.min.css}" rel="stylesheet">
    
    		<!-- Custom styles for this template -->
    		<link href="@{/css/dashboard.css}" rel="stylesheet">
    		<style th:type="text/css">
    			/* Chart.js */
    			
    			@-webkit-keyframes chartjs-render-animation {
    				from {
    					opacity: 0.99
    				}
    				to {
    					opacity: 1
    				}
    			}
    			
    			@keyframes chartjs-render-animation {
    				from {
    					opacity: 0.99
    				}
    				to {
    					opacity: 1
    				}
    			}
    			
    			.chartjs-render-monitor {
    				-webkit-animation: chartjs-render-animation 0.001s;
    				animation: chartjs-render-animation 0.001s;
    			}
    		</style>
    	</head>
    
    	<body>
    		<nav class="navbar navbar-dark sticky-top bg-dark flex-md-nowrap p-0">
    			<a class="navbar-brand col-sm-3 col-md-2 mr-0" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">Company name</a>
    			<input class="form-control form-control-dark w-100" type="text" placeholder="Search" aria-label="Search">
    			<ul class="navbar-nav px-3">
    				<li class="nav-item text-nowrap">
    					<a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">Sign out</a>
    				</li>
    			</ul>
    		</nav>
    
    		<div class="container-fluid">
    			<div class="row">
    				<nav class="col-md-2 d-none d-md-block bg-light sidebar">
    					<div class="sidebar-sticky">
    						<ul class="nav flex-column">
    							<li class="nav-item">
    								<a class="nav-link active" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
    									<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-home">
    										<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
    										<polyline points="9 22 9 12 15 12 15 22"></polyline>
    									</svg>
    									Dashboard <span class="sr-only">(current)</span>
    								</a>
    							</li>
    							<li class="nav-item">
    								<a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
    									<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file">
    										<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path>
    										<polyline points="13 2 13 9 20 9"></polyline>
    									</svg>
    									Orders
    								</a>
    							</li>
    							<li class="nav-item">
    								<a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
    									<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-shopping-cart">
    										<circle cx="9" cy="21" r="1"></circle>
    										<circle cx="20" cy="21" r="1"></circle>
    										<path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"></path>
    									</svg>
    									Products
    								</a>
    							</li>
    							<li class="nav-item">
    								<a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
    									<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-users">
    										<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path>
    										<circle cx="9" cy="7" r="4"></circle>
    										<path d="M23 21v-2a4 4 0 0 0-3-3.87"></path>
    										<path d="M16 3.13a4 4 0 0 1 0 7.75"></path>
    									</svg>
    									Customers
    								</a>
    							</li>
    							<li class="nav-item">
    								<a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
    									<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-bar-chart-2">
    										<line x1="18" y1="20" x2="18" y2="10"></line>
    										<line x1="12" y1="20" x2="12" y2="4"></line>
    										<line x1="6" y1="20" x2="6" y2="14"></line>
    									</svg>
    									Reports
    								</a>
    							</li>
    							<li class="nav-item">
    								<a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
    									<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-layers">
    										<polygon points="12 2 2 7 12 12 22 7 12 2"></polygon>
    										<polyline points="2 17 12 22 22 17"></polyline>
    										<polyline points="2 12 12 17 22 12"></polyline>
    									</svg>
    									Integrations
    								</a>
    							</li>
    						</ul>
    
    						<h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted">
                  <span>Saved reports</span>
                  <a class="d-flex align-items-center text-muted" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-circle"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg>
                  </a>
                </h6>
    						<ul class="nav flex-column mb-2">
    							<li class="nav-item">
    								<a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
    									<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text">
    										<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
    										<polyline points="14 2 14 8 20 8"></polyline>
    										<line x1="16" y1="13" x2="8" y2="13"></line>
    										<line x1="16" y1="17" x2="8" y2="17"></line>
    										<polyline points="10 9 9 9 8 9"></polyline>
    									</svg>
    									Current month
    								</a>
    							</li>
    							<li class="nav-item">
    								<a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
    									<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text">
    										<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
    										<polyline points="14 2 14 8 20 8"></polyline>
    										<line x1="16" y1="13" x2="8" y2="13"></line>
    										<line x1="16" y1="17" x2="8" y2="17"></line>
    										<polyline points="10 9 9 9 8 9"></polyline>
    									</svg>
    									Last quarter
    								</a>
    							</li>
    							<li class="nav-item">
    								<a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
    									<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text">
    										<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
    										<polyline points="14 2 14 8 20 8"></polyline>
    										<line x1="16" y1="13" x2="8" y2="13"></line>
    										<line x1="16" y1="17" x2="8" y2="17"></line>
    										<polyline points="10 9 9 9 8 9"></polyline>
    									</svg>
    									Social engagement
    								</a>
    							</li>
    							<li class="nav-item">
    								<a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
    									<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text">
    										<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
    										<polyline points="14 2 14 8 20 8"></polyline>
    										<line x1="16" y1="13" x2="8" y2="13"></line>
    										<line x1="16" y1="17" x2="8" y2="17"></line>
    										<polyline points="10 9 9 9 8 9"></polyline>
    									</svg>
    									Year-end sale
    								</a>
    							</li>
    						</ul>
    					</div>
    				</nav>
    
    				<main role="main" class="col-md-9 ml-sm-auto col-lg-10 pt-3 px-4">
    					<h1>404</h1>
    				</main>
    			</div>
    		</div>
    
    		<!-- Bootstrap core JavaScript
        ================================================== -->
    		<!-- Placed at the end of the document so the pages load faster -->
    		<script type="text/javascript" src="asserts/js/jquery-3.2.1.slim.min.js" ></script>
    		<script type="text/javascript" src="asserts/js/popper.min.js" ></script>
    		<script type="text/javascript" src="asserts/js/bootstrap.min.js" ></script>
    
    		<!-- Icons -->
    		<script type="text/javascript" src="asserts/js/feather.min.js" ></script>
    		<script>
    			feather.replace()
    		</script>
    
    		<!-- Graphs -->
    		<script type="text/javascript" src="asserts/js/Chart.min.js" ></script>
    		<script>
    			var ctx = document.getElementById("myChart");
    			var myChart = new Chart(ctx, {
    				type: 'line',
    				data: {
    					labels: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
    					datasets: [{
    						data: [15339, 21345, 18483, 24003, 23489, 24092, 12034],
    						lineTension: 0,
    						backgroundColor: 'transparent',
    						borderColor: '#007bff',
    						borderWidth: 4,
    						pointBackgroundColor: '#007bff'
    					}]
    				},
    				options: {
    					scales: {
    						yAxes: [{
    							ticks: {
    								beginAtZero: false
    							}
    						}]
    					},
    					legend: {
    						display: false,
    					}
    				}
    			});
    		</script>
    	</body>
    </html>
    
  5. add.html

    <!DOCTYPE html>
    <!-- saved from url=(0052)http://getbootstrap.com/docs/4.0/examples/dashboard/ -->
    <html lang="en" xmlns:th="http://www.themeleaf.org">
    
    	<head>
    		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    		<meta name="description" content="">
    		<meta name="author" content="">
    
    		<title>Dashboard Template for Bootstrap</title>
    		<!-- Bootstrap core CSS -->
    		<link th:href="@{/css/bootstrap.min.css}" rel="stylesheet">
    
    		<!-- Custom styles for this template -->
    		<link th:href="@{/css/dashboard.css}" rel="stylesheet">
    		<style type="text/css">
    			/* Chart.js */
    			
    			@-webkit-keyframes chartjs-render-animation {
    				from {
    					opacity: 0.99
    				}
    				to {
    					opacity: 1
    				}
    			}
    			
    			@keyframes chartjs-render-animation {
    				from {
    					opacity: 0.99
    				}
    				to {
    					opacity: 1
    				}
    			}
    			
    			.chartjs-render-monitor {
    				-webkit-animation: chartjs-render-animation 0.001s;
    				animation: chartjs-render-animation 0.001s;
    			}
    		</style>
    	</head>
    
    	<body>
    	<div th:replace="~{commons/commons::topbar}"></div>
    <!--	<div th:insert="~{commons/commons::topbar}"></div>-->
    		<div class="container-fluid">
    			<div class="row">
    
    				<div th:replace="~{commons/commons::sidebar(active='list.html')}"></div>
    
    				<main role="main" class="col-md-9 ml-sm-auto col-lg-10 pt-3 px-4">
    					<form class="form-horizontal" th:action="@{/emp}" method="post">
    						<div class="form-group">
    							<label class="col-sm-2 control-label">名字</label>
    							<div class="col-sm-10">
    								<input type="text" class="form-control" placeholder="张三" name="lastName">
    							</div>
    						</div>
    						<div class="form-group">
    							<label class="col-sm-2 control-label">邮件</label>
    							<div class="col-sm-10">
    								<input type="email" class="form-control" placeholder="1234567456@qq.com" name="email">
    							</div>
    						</div>
    						<div class="form-group">
    							<label class="col-sm-2 control-label">性别</label>
    							<div class="col-sm-offset-2 col-sm-10">
    								<label>
    									<input type="radio" name="gender" checked value="1">&nbsp;</label>
    								&nbsp;&nbsp;&nbsp;
    								<label>
    									<input type="radio" name="gender" value="0">&nbsp;</label>
    							</div>
    						</div>
    						<div class="form-group">
    							<label class="col-sm-2 control-label">部门</label>
    							<div class="col-sm-10">
    								<!--由于这里是一个对象所有传递的是这个对象的属性-->
    								<select class="form-control" name="department.id">
    									<option th:each="dept:${departments}" th:text="${dept.getDepartmentName()}" th:value="${dept.getId()}"></option>
    								</select>
    							</div>
    
    						</div>
    						<div class="form-group">
    							<label class="col-sm-2 control-label">生日</label>
    							<div class="col-sm-10">
    								<input type="text" class="form-control" placeholder="2000/11/11" name="birth">
    							</div>
    						</div>
    						<div class="form-group">
    							<div class="col-sm-offset-2 col-sm-10">
    								<button class="btn btn-sm btn-success" type="submit">添加</button>
    							</div>
    						</div>
    					</form>
    				</main>
    			</div>
    		</div>
    
    		<!-- Bootstrap core JavaScript
        ================================================== -->
    		<!-- Placed at the end of the document so the pages load faster -->
    		<script type="text/javascript" src="asserts/js/jquery-3.2.1.slim.min.js"></script>
    		<script type="text/javascript" src="asserts/js/popper.min.js"></script>
    		<script type="text/javascript" src="asserts/js/bootstrap.min.js"></script>
    
    		<!-- Icons -->
    		<script type="text/javascript" src="asserts/js/feather.min.js"></script>
    		<script>
    			feather.replace()
    		</script>
    
    		<!-- Graphs -->
    		<script type="text/javascript" src="asserts/js/Chart.min.js"></script>
    		<script>
    			var ctx = document.getElementById("myChart");
    			var myChart = new Chart(ctx, {
    				type: 'line',
    				data: {
    					labels: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
    					datasets: [{
    						data: [15339, 21345, 18483, 24003, 23489, 24092, 12034],
    						lineTension: 0,
    						backgroundColor: 'transparent',
    						borderColor: '#007bff',
    						borderWidth: 4,
    						pointBackgroundColor: '#007bff'
    					}]
    				},
    				options: {
    					scales: {
    						yAxes: [{
    							ticks: {
    								beginAtZero: false
    							}
    						}]
    					},
    					legend: {
    						display: false,
    					}
    				}
    			});
    		</script>
    	</body>
    </html>
    
  6. update.html

    <!DOCTYPE html>
    <!-- saved from url=(0052)http://getbootstrap.com/docs/4.0/examples/dashboard/ -->
    <html lang="en" xmlns:th="http://www.themeleaf.org">
    
    	<head>
    		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    		<meta name="description" content="">
    		<meta name="author" content="">
    
    		<title>Dashboard Template for Bootstrap</title>
    		<!-- Bootstrap core CSS -->
    		<link th:href="@{/css/bootstrap.min.css}" rel="stylesheet">
    
    		<!-- Custom styles for this template -->
    		<link th:href="@{/css/dashboard.css}" rel="stylesheet">
    		<style type="text/css">
    			/* Chart.js */
    			
    			@-webkit-keyframes chartjs-render-animation {
    				from {
    					opacity: 0.99
    				}
    				to {
    					opacity: 1
    				}
    			}
    			
    			@keyframes chartjs-render-animation {
    				from {
    					opacity: 0.99
    				}
    				to {
    					opacity: 1
    				}
    			}
    			
    			.chartjs-render-monitor {
    				-webkit-animation: chartjs-render-animation 0.001s;
    				animation: chartjs-render-animation 0.001s;
    			}
    		</style>
    	</head>
    
    	<body>
    	<div th:replace="~{commons/commons::topbar}"></div>
    <!--	<div th:insert="~{commons/commons::topbar}"></div>-->
    		<div class="container-fluid">
    			<div class="row">
    
    				<div th:replace="~{commons/commons::sidebar(active='list.html')}"></div>
    
    				<main role="main" class="col-md-9 ml-sm-auto col-lg-10 pt-3 px-4">
    					<form th:action="@{/updateEmp}" method="post">
    						<!--隐藏id属性-->
    						<input type="hidden" name="id" th:value="${emp.getId()}" >
    						<div class="form-group">
    							<label class="col-sm-2 control-label">名字</label>
    							<div class="col-sm-10">
    								<input th:value="${emp.getLastName()}" type="text" class="form-control" placeholder="张三" name="lastName">
    							</div>
    						</div>
    						<div class="form-group">
    							<label class="col-sm-2 control-label">邮件</label>
    							<div class="col-sm-10">
    								<input th:value="${emp.getEmail()}" type="email" class="form-control" placeholder="1234567456@qq.com" name="email">
    							</div>
    						</div>
    						<div class="form-group">
    							<label class="col-sm-2 control-label">性别</label>
    							<div class="col-sm-offset-2 col-sm-10">
    								<label>
    									<input th:checked="${emp.getGender()==1}" type="radio" name="gender" checked value="1">&nbsp;</label>
    								&nbsp;&nbsp;&nbsp;
    								<label>
    									<input th:checked="${emp.getGender()==0}" type="radio" name="gender" value="0">&nbsp;</label>
    							</div>
    						</div>
    						<div class="form-group">
    							<label class="col-sm-2 control-label">部门</label>
    							<div class="col-sm-10">
    								<!--由于这里是一个对象所有传递的是这个对象的属性-->
    								<select class="form-control" name="department.id">
    <!--									<option th:selected="${dept.getId()==emp.getDepartments().getId()}" th:each="dept:${departments}" th:text="${dept.getDepartmentName()}"-->
    <!--											th:value="${dept.getId()}"></option>-->
    									<option th:selected="${emp.getDepartment().getId()==dept.getId()}" th:each="dept:${departments}" th:text="${dept.getDepartmentName()}"
    											th:value="${dept.getId()}"></option>
    								</select>
    							</div>
    
    						</div>
    						<div class="form-group">
    							<label class="col-sm-2 control-label">生日</label>
    							<div class="col-sm-10">
    								<input th:value="${#dates.format(emp.getBirth(),'yyyy-MM-dd')}" type="text" class="form-control" placeholder="2000/11/11" name="birth">
    							</div>
    						</div>
    						<div class="form-group">
    							<div class="col-sm-offset-2 col-sm-10">
    								<button class="btn btn-sm btn-success" type="submit">修改</button>
    							</div>
    						</div>
    					</form>
    				</main>
    			</div>
    		</div>
    
    		<!-- Bootstrap core JavaScript
        ================================================== -->
    		<!-- Placed at the end of the document so the pages load faster -->
    		<script type="text/javascript" src="asserts/js/jquery-3.2.1.slim.min.js"></script>
    		<script type="text/javascript" src="asserts/js/popper.min.js"></script>
    		<script type="text/javascript" src="asserts/js/bootstrap.min.js"></script>
    
    		<!-- Icons -->
    		<script type="text/javascript" src="asserts/js/feather.min.js"></script>
    		<script>
    			feather.replace()
    		</script>
    
    		<!-- Graphs -->
    		<script type="text/javascript" src="asserts/js/Chart.min.js"></script>
    		<script>
    			var ctx = document.getElementById("myChart");
    			var myChart = new Chart(ctx, {
    				type: 'line',
    				data: {
    					labels: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
    					datasets: [{
    						data: [15339, 21345, 18483, 24003, 23489, 24092, 12034],
    						lineTension: 0,
    						backgroundColor: 'transparent',
    						borderColor: '#007bff',
    						borderWidth: 4,
    						pointBackgroundColor: '#007bff'
    					}]
    				},
    				options: {
    					scales: {
    						yAxes: [{
    							ticks: {
    								beginAtZero: false
    							}
    						}]
    					},
    					legend: {
    						display: false,
    					}
    				}
    			});
    		</script>
    	</body>
    </html>
    
  7. commons.html(抽取部分导航栏)

    <!DOCTYPE html>
    <html lang="en" xmlns:th="http://www.themeleaf.org">
    
    <!--头部导航栏-->
    <nav class="navbar navbar-dark sticky-top bg-dark flex-md-nowrap p-0" th:fragment="topbar">
        <a class="navbar-brand col-sm-3 col-md-2 mr-0" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">[[${session.loginUser}]]</a>
        <input class="form-control form-control-dark w-100" type="text" placeholder="Search" aria-label="Search">
        <ul class="navbar-nav px-3">
            <li class="nav-item text-nowrap">
                <a class="nav-link" th:href="@{/user/logout}">注销</a>
            </li>
        </ul>
    </nav>
    
    <!--侧边栏-->
    <!--使用th:fragment提取侧边栏,实现复用-->
    
    <nav class="col-md-2 d-none d-md-block bg-light sidebar" th:fragment="sidebar">
    
        <div class="sidebar-sticky">
            <ul class="nav flex-column">
                <li class="nav-item">
                    <a th:class="${active =='main.html'?'nav-link active':'nav-link'}" th:href="@{/index.html}">
                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-home">
                            <path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
                            <polyline points="9 22 9 12 15 12 15 22"></polyline>
                        </svg>
                        首页 <span class="sr-only">(current)</span>
                    </a>
                </li>
                <li class="nav-item">
                    <a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file">
                            <path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path>
                            <polyline points="13 2 13 9 20 9"></polyline>
                        </svg>
                        Orders
                    </a>
                </li>
                <li class="nav-item">
                    <a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-shopping-cart">
                            <circle cx="9" cy="21" r="1"></circle>
                            <circle cx="20" cy="21" r="1"></circle>
                            <path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"></path>
                        </svg>
                        Products
                    </a>
                </li>
                <li class="nav-item">
                    <a th:class="${active =='list.html'?'nav-link active':'nav-link'}" th:href="@{/emps}">
                        员工管理
                    </a>
                </li>
                <li class="nav-item">
                    <a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-bar-chart-2">
                            <line x1="18" y1="20" x2="18" y2="10"></line>
                            <line x1="12" y1="20" x2="12" y2="4"></line>
                            <line x1="6" y1="20" x2="6" y2="14"></line>
                        </svg>
                        Reports
                    </a>
                </li>
                <li class="nav-item">
                    <a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-layers">
                            <polygon points="12 2 2 7 12 12 22 7 12 2"></polygon>
                            <polyline points="2 17 12 22 22 17"></polyline>
                            <polyline points="2 12 12 17 22 12"></polyline>
                        </svg>
                        Integrations
                    </a>
                </li>
            </ul>
    
            <h6 class="sidebar-heading d-flex justify-content-between align-items-center px-3 mt-4 mb-1 text-muted">
                <span>Saved reports</span>
                <a class="d-flex align-items-center text-muted" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-circle"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg>
                </a>
            </h6>
            <ul class="nav flex-column mb-2">
                <li class="nav-item">
                    <a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text">
                            <path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
                            <polyline points="14 2 14 8 20 8"></polyline>
                            <line x1="16" y1="13" x2="8" y2="13"></line>
                            <line x1="16" y1="17" x2="8" y2="17"></line>
                            <polyline points="10 9 9 9 8 9"></polyline>
                        </svg>
                        Current month
                    </a>
                </li>
                <li class="nav-item">
                    <a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text">
                            <path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
                            <polyline points="14 2 14 8 20 8"></polyline>
                            <line x1="16" y1="13" x2="8" y2="13"></line>
                            <line x1="16" y1="17" x2="8" y2="17"></line>
                            <polyline points="10 9 9 9 8 9"></polyline>
                        </svg>
                        Last quarter
                    </a>
                </li>
                <li class="nav-item">
                    <a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text">
                            <path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
                            <polyline points="14 2 14 8 20 8"></polyline>
                            <line x1="16" y1="13" x2="8" y2="13"></line>
                            <line x1="16" y1="17" x2="8" y2="17"></line>
                            <polyline points="10 9 9 9 8 9"></polyline>
                        </svg>
                        Social engagement
                    </a>
                </li>
                <li class="nav-item">
                    <a class="nav-link" href="http://getbootstrap.com/docs/4.0/examples/dashboard/#">
                        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file-text">
                            <path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
                            <polyline points="14 2 14 8 20 8"></polyline>
                            <line x1="16" y1="13" x2="8" y2="13"></line>
                            <line x1="16" y1="17" x2="8" y2="17"></line>
                            <polyline points="10 9 9 9 8 9"></polyline>
                        </svg>
                        Year-end sale
                    </a>
                </li>
            </ul>
        </div>
    </nav>
    </html>
    
3.创建MVC配置类:MyMvcConfig继承 WebMvcConfigurer
package com.ddf.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.LocaleResolver;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Configuration
//@EnableWebMvc     //这个注解不能随便乱加,如果加了咱们自己创建的视图就不会生效
public class MyMvcConfig implements WebMvcConfigurer {

    //添加视图控制
    //自定义首页
    @Override
    public void addViewControllers(ViewControllerRegistry registry) {
        //设置页面访问路径,把dashboard访问改成了main.html
        registry.addViewController("/").setViewName("index");
        registry.addViewController("/index.html").setViewName("index");
        registry.addViewController("/main.html").setViewName("dashboard");
    }

    //自定义的国际化组件
    @Bean
    public LocaleResolver localeResolver(){
        return new MyLocaleResolver();
    }

    //配置拦截器
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        //添加一个拦截器,拦截需要的一些请求路径,
        //addPathPatterns:拦截的请求 /**表示拦截所有的请求
        //excludePathPatterns:排除要拦截的请求
        registry.addInterceptor(new LoginHandlerInterceptor())
                .addPathPatterns("/**")
                .excludePathPatterns("/index.html","/","/user/**","/css/*","/js/**","/img/**");
    }

}

4.修改引入的静态资源文件

  1. 引入Thymeleaf头文件

    <!--所有的html元素都可以被thymeleaf替换:使用th:元素名-->
    <html lang="en" xmlns:th="http://www.themeleaf.org">
    
  2. Thymeleaf的取值范围

    1. 如果是一个变量使用:**${}**取值
    2. 如果是一选择的表达式使用:***{}**取值
    3. 如果是一个消息使用:**#{}**取值
    4. 如果是一个Url地址使用:**@{}**取值
    5. 如果是一个Fragment使用:**~{}**取值

5.页面国际化

  1. 创建i18n目录,目录下创建三个配置文件(注意创建完这三个配置文件他会自动合成一个配置文件)

    login.properties(默认)

    login.btn=登录
    login.password=密码
    login.remember=记得我
    login.tip=请登录
    login.username=用户名
    

    login_en_US.properties(英文)

    login.btn=Sign in
    login.password=Password
    login.remember=Remember me
    login.tip=Please sign in
    login.username=UserName
    

    login_zh_CN.properties(中文)

    login.btn=登录
    login.password=密码
    login.remember=记得我
    login.tip=请登录
    login.username=用户名
    
  2. 在全局配置文件中配置默认的位置

    #关闭默认图标
    spring.mvc.favicon.enabled=false
    
    #关闭模板引擎的缓存
    spring.thymeleaf.cache=false
    
    #访问路径(项目虚拟路径)
    server.servlet.context-path=/kuang
    
    #我们的静态资源
    spring.messages.basename=i18n.login
    
    #时间日期格式化
    spring.mvc.date-format=yyyy-MM-dd
    
  3. 替换静态页面的数据

  4. 配置解析器:MyLocaleResolver

    package com.ddf.config;
    
    import org.springframework.web.servlet.LocaleResolver;
    import org.thymeleaf.util.StringUtils;
    
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.util.Locale;
    
    public class MyLocaleResolver implements LocaleResolver {
        //解析请求
        @Override
        public Locale resolveLocale(HttpServletRequest request) {
            //获取请求中的语言参数
            String language = request.getParameter("l");
    
            Locale locale = Locale.getDefault();//如果没有就使用默认的
    
            //如果请求的链接携带了国际化的参数
            if(!StringUtils.isEmpty(language)){
                //zh_CN	拆分传过来的参数zh:国家  CN:地区
                String[] split = language.split("_");
                //国家,地区
                locale = new Locale(split[0], split[1]);
            }
            return locale;
        }
    }
    
    
  5. 把解析器注入到bean中

    package com.ddf.config;
    
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.web.servlet.LocaleResolver;
    import org.springframework.web.servlet.config.annotation.EnableWebMvc;
    import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
    import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
    import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
    
    @Configuration
    //@EnableWebMvc     //这个注解不能随便乱加,如果加了咱们自己创建的视图就不会生效
    public class MyMvcConfig implements WebMvcConfigurer {
    
        //添加视图控制
        //自定义首页
        @Override
        public void addViewControllers(ViewControllerRegistry registry) {
            //设置页面访问路径,把dashboard访问改成了main.html
            registry.addViewController("/").setViewName("index");
            registry.addViewController("/index.html").setViewName("index");
            registry.addViewController("/main.html").setViewName("dashboard");
        }
    
        //自定义的国际化组件
        @Bean
        public LocaleResolver localeResolver(){
            return new MyLocaleResolver();
        }
    }
    

6.实现登录功能

1.创建LoginController类:
package com.ddf.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.thymeleaf.util.StringUtils;

import javax.servlet.http.HttpSession;

@Controller
public class LoginController {

    @RequestMapping("/user/login")
    public String login(
            @RequestParam("username") String username,
            @RequestParam("password") String password, Model model, HttpSession session){

        //判断用户是否登录成功
        if(!StringUtils.isEmpty(username) && "123456".equals(password)){
            //如果登录成功传入一个session的值
            session.setAttribute("loginUser",username);
            return "dashboard";
        }else{
            model.addAttribute("msg","用户名或密码错误!");
            return "index";
        }

    }
    //注销
    @RequestMapping("/user/logout")
    public String logout(HttpSession session){
        System.out.println("==========================");
        session.invalidate();
        return "index.html";
    }
}

7.登录拦截器

  1. 定义一个拦截器(通过session传值判断是否登录)

    package com.ddf.config;
    
    import org.springframework.web.servlet.HandlerInterceptor;
    
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    
    //设置首页拦截器
    public class LoginHandlerInterceptor implements HandlerInterceptor {
    
        @Override
        public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
            //登录成功之后,应该有用户的session;
            Object loginUser = request.getSession().getAttribute("loginUser");
            if(loginUser == null){
                request.setAttribute("msg","没有权限,请先登录");
                request.getRequestDispatcher("/index.html").forward(request,response);
                return false;
            }else{
                return true;
            }
        }
    }
    

8.展示所有员工(进行增删改查)

  1. 创建EmployeeController:

    package com.ddf.controller;
    
    import com.ddf.dao.DepartmentDao;
    import com.ddf.dao.EmployeeDao;
    import com.ddf.pojo.Department;
    import com.ddf.pojo.Employee;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.stereotype.Controller;
    import org.springframework.ui.Model;
    import org.springframework.web.bind.annotation.*;
    
    import javax.servlet.http.HttpSession;
    import java.util.Collection;
    
    @Controller
    public class EmployeeController {
    
        //调用dao层
        @Autowired
        EmployeeDao employeeDao;
        @Autowired
        DepartmentDao departmentDao;
    
        //注意:这里所有请求的路径使用的是Rest风格,请求的映射都不一样get、post
        //显示所有信息
        @RequestMapping("/emps")
        public String list(Model model){
            Collection<Employee> employees = employeeDao.getAll();
            model.addAttribute("emps",employees);
            return "emp/list";
        }
    
        //进入添加页面
        @GetMapping("/emp")
        public String toAddpage(Model model){
            //查询所有部门的信息
            Collection<Department> departments = departmentDao.getDepartment();
            model.addAttribute("departments",departments);
            return "emp/add";
        }
    
        //添加信息
        @PostMapping("/emp")
        public String addEmp(Employee employee){
            //添加操作
            employeeDao.save(employee); //调用底层业务方法保存员工信息
            return "redirect:/emps";
        }
    
    
        //进入修改页面
        @GetMapping("/upemp/{id}")
        public String toupdataEmp(@PathVariable(name = "id") Integer id, Model model) {
            //查出原来的数据
            Employee employee = employeeDao.getEmployeeById(id);
            model.addAttribute("emp", employee);
    
            Collection<Department> departments = departmentDao.getDepartment();
            System.out.println("----------->>>>>" + departments.toString());
            model.addAttribute("departments", departments);
    
            return "emp/update";
        }
    
        @PostMapping("/updateEmp")
        public String updataEmp(Employee employee) {
            employeeDao.save(employee);
            return "redirect:/emps";
        }
    
        //删除员工
        @GetMapping("/deleteEmp/{id}")
        public String deleteEmp(@PathVariable("id") int id) {
            employeeDao.delete(id);
            return "redirect:/emps";
        }
    }
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值