一、基于SpringCloud+Springboot+MybatisPlus+Vue的电子商城管理系统
下载地址:https://download.csdn.net/download/wyn_365/85577580
1.1 项目概述
开发语言:Java8
数据库:Mysql5
前端框架:Vue
后端框架:SpringCloud Springboot【内嵌】 MybatisPlus 【ORM javabean – 数据库表实体 】
服务器:Tomcat,SSM SSH【自己部署】
开发工具:IDEA Navicat VSCODE Maven
代码设计:MVC HTTP-----> Controlller----->service------>dao【Model】---->SQL
get post delete put
1.2 项目详解
1.登录【正则表达式】 slect * from user where username = “” and passsword = “”;
用户名:
密码:
验证码:
1.HTTP地址:post[form] ----Controller
2.首先验证码对不对?
3.通过之后查库
4.查询数据库有没有该用户?
2.注册 insert
1.检验数据格式
2.判断两次密码是否一致
3.form 提交到后台Controller
4.插入数据库
3.查询所有商品 信息【带有莫查询条件+分页数据】
【js url “”】HTTP: shangpinxinxi/list 【三个选项模糊查询,分页,当前页,每页查询多少条数据】
程序【接受执行】:controller @RequestMapping(“/shangpinxinxi/list”)
SQL: select * from shangojnmxinxi where name liike %xxxx% limit 0,5;
查询某一条数据:
HTTP: “/?id”
select * from sahngpnxinxi where id = ?
4.新增 或者修改
insert: insert shangpjn xinxi name,title values(,);
update: update sahngpinxinxi set name = “” where id - ?
post from : update blog set title = ‘’ where id = ? this.$http({ url: shangpinxinxi/${!this.ruleForm.id ? "save" : "update"}, method: “post”, data: this.ruleForm }) select** delete delete from fangdong where id = 1; this.$http({ url: “shangpinxinxi/delete”, method: “post”, data: ids })
5.展示如何实现:
1.3 项目总结
1.先看前台发送请求的地方在哪里 http url:
2.后台:controller映射路径
3.解析程序 service 【封装的参数,返回值】
4.SQL: