基于Springboot+MybatisPlus+Vue前后端分离的人事招聘管理系统

一、基于Springboot+MybatisPlus+Vue前后端分离的人事招聘管理系统

1.1 项目概述

开发语言:Java8

数据库:Mysql5

前端技术:Vue layui elementui

后端框架:Springboot MybatisPlus 【ORM javabean – 数据库表实体 】

数据库连接池:德鲁伊

服务器:Tomcat,SSM SHH【自己部署】

开发工具:Eclipse Navicat Maven

代码设计:MVC HTTP-----> Controlller----->service------>dao【Model】

get post delete put

1.2 项目详解

1.登录【正则表达式】

用户名:

密码:

验证码:

1.HTTP地址:post[form] ----Controller

2.首先验证码对不对?

3.通过之后查库

4.查询数据库有没有该用户?

2.注册

1.检验数据格式

2.判断两次密码是否一致

3.form 提交到后台Controller

4.插入数据库

3.展示所有招聘信息,带有条件查询和分页数据

主页面请求:http: zhaopinxinxi/list

程序:@RequestMapping(“zhaopinxinxi/list”)

SQL: select * from zhaopinxinxi gangwei like % % limit 0,8;

4.提交简历信息到后台数据库表

请求路径:‘zhaopinxinxi’ + ‘/add’, ‘post’

程序:

SQL:insert into xxxxx values();

5.后台查询所有有的简历 带有分页数据和条件查询

this.$http({

​ url: “qiuzhijianli/page”,

​ method: “get”,

​ params: params

​ })

6.审核功能

update qiuzhixinxi set sfsh = “是” where id = ?

7.新增、修改

this.$http({

​ url: qiuzhijianli/${!this.ruleForm.id ? "save" : "update"},

​ method: “post”,

​ data: this.ruleForm

​ })

save: insert into dianyingxinxi ssss sss values();

update: select * from film where id = ? href="film/getFilmById.action?id=${film.filmid}

update dianying set name = ‘666666’ and where id = ?

8.批量删除功能

ids

9.邀请面试

1.回显数据,人【input】

2.插入数据库

this.$http({

​ url: yaoqingmianshi/${!this.ruleForm.id ? "save" : "update"},

​ method: “post”,

​ data: this.ruleForm

​ }).

1.3 项目总结

1.先看前台发送请求的地方在哪里 http url:

2.后台:controller映射路径

3.解析程序 service 【封装的参数,返回值】

4.SQL:

基于Springboot+MybatisPlus+Vue前后端分离的人事招聘管理系统_第1张图片

基于Springboot+MybatisPlus+Vue前后端分离的人事招聘管理系统_第2张图片
基于Springboot+MybatisPlus+Vue前后端分离的人事招聘管理系统_第3张图片

基于Springboot+MybatisPlus+Vue前后端分离的人事招聘管理系统_第4张图片

你可能感兴趣的:(项目,毕业设计,spring,boot,vue.js,mybatis)