数据库
首页 > 数据库> > SpringBoot模拟数据库开发

SpringBoot模拟数据库开发

作者:互联网

Spring boot模拟数据库开发

准备工作

  1. 然后把网页模板都导入到templates文件夹下
    在这里插入图片描述

2.把静态资源导入到static文件夹下

在这里插入图片描述

3.模拟数据库操作

  1. pojo层创建

    @Data
    @AllArgsConstructor
    @NoArgsConstructor
    //部门表
    public class Development {
        private Integer id;
        private String developmentName;
    
    }
    
    @Data
    @NoArgsConstructor
    //员工表
    public class Employee {
        private Integer id;
        private String lastName;
        private String email;
        private Integer gender;
        private Development development;
        private Date birth;
    
        public Employee(Integer id, String lastName, String email, Integer gender, Development development) {
            this.id = id;
            this.lastName = lastName;
            this.email = email;
            this.gender = gender;
            this.development = development;
            this.birth=new Date();
        }
    }
    
  2. dao层创建

    @Repository
    public class DevelopmentDao {
        //模拟数据库管理数据
        public static Map<Integer,Development> developments=null;
        static {
            developments=new HashMap<Integer, Development>();
    
            developments.put(101,(new Development(101,"教育部")));
            developments.put(102,(new Development(102,"人事部")));
            developments.put(103,(new Development(103,"运营部")));
            developments.put(104,(new Development(104,"技术部")));
            developments.put(105,(new Development(105,"后勤部")));
        }
        //获取部门表的所有信息
        public Collection<Development> getDevelopmentAll(){
            return developments.values();
        }
    
        //通过获取id获得部门的信息
        public Development getDevelopmentById(Integer id){
            return developments.get(id);
        }
    }
    
    
    @Repository
    public class EmployeeDao {
        //模拟数据管理员工表
        public static Map<Integer, Employee> employees=null;
        static {
            employees=new HashMap<Integer, Employee>();
    
            employees.put(1001,new Employee(1001,"Aa","A1157627585@qq.com",0,new Development(101,"教育部")));
            employees.put(1002,new Employee(1002,"Bb","B1157627585@qq.com",1,new Development(102,"人事部")));
            employees.put(1003,new Employee(1003,"Cc","C1157627585@qq.com",0,new Development(103,"运营部")));
            employees.put(1004,new Employee(1004,"Dd","D1157627585@qq.com",1,new Development(104,"技术部")));
            employees.put(1005,new Employee(1005,"Ee","E1157627585@qq.com",0,new Development(105,"后勤部")));
        }
    
        //获得所有员工的信息
        public Collection<Employee> getEmployeeAll(){
            return employees.values();
        }
    
    
        //根据id获取员工的信息
        public Employee getEmployeeById(Integer id){
            return employees.get(id);
        }
    
        //主键自增
        public static Integer initEmployeeid=1006;
        //增加一个员工
        public void addEmployee(Employee employee){
            //如果添加的员工id为空
            if (employee.getId()==null){
                //那么就自动+1
                employee.setId(initEmployeeid++);
            }
    
            //把所添加的信息添加到数据库中
            employees.put(employee.getId(),employee);
        }
    
        //根据id删除一个员工
        public void deleteEmployee(Integer id){
            employees.remove(id);
        }
    
    }
    
    

首页实现

  1. 扩展首页的mvc配置

     //添加一个视图控制器,来控制跳转的方式
        @Override
        public void addViewControllers(ViewControllerRegistry registry) {
            registry.addViewController("/").setViewName("login");
            registry.addViewController("/index.html").setViewName("login");
            registry.addViewController("/main.html").setViewName("index");
        }
    
  2. 需要关闭thymleaf引擎的缓存机制

    #关闭thymleaf缓存机制
    spring.thymeleaf.cache=false
    
  3. 网页表头需要添加thymleaf的命名空间

    xmlns:th="http://www.thymeleaf.org"
    
  4. 需要把网页改成thymleaf格式

    <!-- 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">
    

    所有页面的静态资源都需要使用thymleaf接管,

    其他也都是需要改,在线的连接不需要改

国际化

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

登录功能实现

因为数据库是伪造的,所以登录的时候无论什么都能登录进去

在这里插入图片描述

登录拦截器

在这里插入图片描述

展示员工列表

在这里插入图片描述

增加员工实现

修改员工信息

在这里插入图片描述

删除及404处理

在这里插入图片描述
在这里插入图片描述

好了,一个springboot模拟数据库开发的网站就到此结束了,如果有什么不对的地方,请及时说出,我也会即使改正的。

标签:Development,return,SpringBoot,employees,数据库,public,new,id,模拟
来源: https://blog.csdn.net/qq_43730903/article/details/122770650