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

构建员工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>

页面展示

posted @   努力的校长  阅读(664)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 25岁的心里话
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
点击右上角即可分享
微信分享提示