Springboot:员工管理之查询员工列表(十(6))

时间:2021-06-10 08:35:34

构建员工controller

com\springboot\controller\EmployeeController.java

package com.springboot.controller;

import com.springboot.dao.EmployeeDao;
import com.springboot.vo.Employee;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import java.util.Collection; @Controller
public class EmployeeController { @Autowired
EmployeeDao employeeDao; @Autowired
DepartmentDao departmentDao; //查询所有员工
@GetMapping("/employee")
public String list(Model model){ Collection<Employee> emps = employeeDao.getAll();
model.addAttribute("emps",emps); return "list";
}
}

构建显示员工信息

resources\templates\list.html

<table class="table table-striped table-sm">
<thead>
<tr>
<th>编号</th>
<th>姓名</th>
<th>邮箱</th>
<th>性别</th>
<th>部门</th>
<th>生日</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.getDepartment().getDepartmentName()}"></td>
<td th:text="${#dates.format(emp.getBirth(),'yyyy-MM-dd')}"></td>
<td >
<a class="btn btn-sm btn-primary" >编辑</a>
<button class="btn btn-sm btn-danger deleteBtn">删除</button>
</td>
</tr> </tbody>
</table>

页面展示

Springboot:员工管理之查询员工列表(十(6))