SpringBoot+Mybatis+CRUD项目
创始人
2024-01-20 13:40:01
0

一、项目要求

  • 创建一个 SpringBoot 项目,项目名”week11_学号”;
  • 使用 Mybatis 框架,也可以时可用 MybatisPlus 框架;
  • 访问 myschool 数据库;对 student 表进行操作,向 student 插入自己的一条记录,自行设计完成 CRUD操作;
  • 创建相应的 Pojo 层、Mapper 层、Service 层、Controller 层;
  • 在各层中,创建针对 student 表操作的类或接口;
  • 对 stuentController 设置一级和二级对外访问虚拟路径;
  • 启动服务器,测试控制器中的方法,直接将 CRUD 操作结果在后台打印出来;
  • 将运行结果截图,保存在 word 文档中。

二、下载Postman接口测试工具

postman可以很好的模拟浏览器并向API发送Request请求,所以一起来下载一下…
Postman下载地址
请添加图片描述
下载好后,注册账户,就可以开始用了,具体使用方法后面测试时讲

三、实验内容

1、jsp技术

Jsp和serlvet是开发动态web的一门技术,特别擅长开发B/S架构的程序,jsp和html文件相似。但是,SpringBoot不推荐使用JSP,所以如果想在SpringBoot中使用JSP,需要自己做一些配置。

2、Servlet技术

Servlet本质上就是Java类,但要遵循Servlet规范进行编写,它的创建、调用、销毁都由Servlet容器进行管理(如Tomcat,Jetty, WebLogic Server, JBoss等)。

3、MVC框架

在企业级Web项目开发中,标准的三层架构包括:表现层、业务层、数据访问层(持久层)。三层架构中,每一层各司其职,其中:

  • 表现层(UI)
  • 业务层(Service)
  • 数据访问层(持久层)
    请添加图片描述

MVC

  • 模型(Model)
  • 控制器(Controller)
  • 视图(View)

4、页面向控制器传递参数

  • 基本类型和 String 类型
  • POJO 类型参数,即实体类
  • 数组,集合类型参数
  • json 格式数据 (非常重要!!!后面在postman里要选择json)

5、SpringMVC 中常用注解小结

@Controller
//作用:修饰类,一个类被它修饰,就成了控制器类,负责接收和处理 HTTP 请求,可以返回页面和数据;
@RestController (@Controller+@ResponseBody 的组合注解)
//作用:修饰类,一个类被它修饰,就成了控制器类,只返回给用户数据,默认将返回的对象数据转换为 json 格式@RequestMapping
//作用:负责 URL 的路由映射,建立请求 URL 和处理请求方法之间的对应关系,可以修饰类或类中的方法
@RequestParam 
//作用:将请求参数绑定到控制器的方法参数上,接收的参数来自http请求体或请求的url的QueryString
@RequestBody
//该注解主要用来接收前端传递给后端的 json 字符串中的数据(请求体中的数据的)。
@PathVaraible
//作用:处理动态URL,URL的值可以作为控制器中处理方法的参数,主要用于RestFul风格中

四、完整代码

1、配置文件

application.yml
spring:datasource:driver-class-name: com.mysql.cj.jdbc.Driverurl: jdbc:mysql://localhost:3306/myschool?serverTimezone=Hongkong?characterEncoding=utf8&serverTimezone=GMT%2B8username: rootpassword: 密码mybatis:mapper-locations: classpath:com/exmaple/mapper/*.xml    #指定sql配置文件的位置type-aliases-package: com.example.pojo      #指定实体类所在的包名configuration:log-impl: org.apache.ibatis.logging.stdout.StdOutImpl   #输出SQL命令
pom.xml

4.0.0org.springframework.bootspring-boot-starter-parent2.7.5 com.exampleweek11_202010000000.0.1-SNAPSHOTweek11_20201000000week11_202010000001.8org.springframework.bootspring-boot-starter-weborg.mybatis.spring.bootmybatis-spring-boot-starter2.2.2com.mysqlmysql-connector-jruntimeorg.projectlomboklomboktrueorg.springframework.bootspring-boot-starter-testtestsrc/main/java**/*.xmlsrc/main/resources**.*org.springframework.bootspring-boot-maven-pluginorg.projectlomboklombok

2、代码

Student.java
package com.example.pojo;import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor //自动生成无参构造函数
@AllArgsConstructor
public class Student {private Long id;private String sname;private String dept;private int age;
}
StudentMapper.java
package com.example.mapper;import com.example.pojo.Student;import java.util.List;
import java.util.Map;public interface StudentMapper {//1public List getAllStudentMap();//2public Student getStudentById(Long id);//3更新用户信息public int updateStudentByDynam(Map mp);//4public int addStudent(Student student);//5public int deleteStudentById(Long id);}
StudentMapper.xml

update studentsname=#{sname},dept=#{dept},age=#{age},id=#{id}where id=#{id}INSERT INTO student SET sname=#{sname},dept=#{dept},age=#{age}DELETE FROM studentwhere id=#{id}
StudentService.java
package com.example.service;import com.example.pojo.Student;
import java.io.IOException;
import java.util.List;
import java.util.Map;public interface StudentService {//1public List getAllStudentMap();//2public Student getStudentById(Long id);//3更新用户信息public int updateStudentByDynam(Map mp);//4public int addStudent(Student student);//5public int deleteStudentById(Long id);}
StudentServiceImpl.java
package com.example.service.impl;import com.example.mapper.StudentMapper;
import com.example.pojo.Student;
import com.example.service.StudentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;import java.io.IOException;
import java.util.List;
import java.util.Map;@Service
public class StudentServiceImpl implements StudentService {@Autowiredprivate StudentMapper studentMapper;//根据id查询@Overridepublic Student getStudentById(Long id){return studentMapper.getStudentById(id);}//根据id修改用户信息@Overridepublic int updateStudentByDynam(Map mp) {return studentMapper.updateStudentByDynam(mp);}@Overridepublic int deleteStudentById(Long id){return studentMapper.deleteStudentById(id);}//查询用户public List getAllStudentMap() {return studentMapper.getAllStudentMap();}public int addStudent(Student student) {return studentMapper.addStudent(student);}
}
StudentController.java
package com.example.controller;import com.example.pojo.Student;
import com.example.service.StudentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;import java.io.IOException;
import java.util.List;
import java.util.Map;@RestController
@RequestMapping(value = "/student")
public class StudentController {@Autowiredprivate StudentService studentService;@RequestMapping(value = "/getAllStudent",method = RequestMethod.GET)public List getAllStudent(){List studentList = studentService.getAllStudentMap();System.out.println("test");return studentList;}@RequestMapping(value = "/findStudentById",method =RequestMethod.GET)public Student findStudentById(Long id) throws IOException {Student studentById = studentService.getStudentById(id);System.out.println(studentById);return studentById;}@RequestMapping(value = "/addStudent",method = RequestMethod.POST)public int addStudent(Student student) {System.out.print(student);int num=studentService.addStudent(student);System.out.println(num);return num;}@RequestMapping(value = "/updateStudentByDynam",method =RequestMethod.POST)public int updateStudentByDynam(@RequestBody Map mp){System.out.println("mp: ");System.out.println(mp);int row = studentService.updateStudentByDynam(mp);System.out.println(row);return row;}@RequestMapping(value = "/deleteStudentById",method =RequestMethod.POST)public int deleteStudentById(Long id){System.out.println("id: "+id);return studentService.deleteStudentById(id);}
}
Week1120201000000Application.java
package com.example;import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplication
@MapperScan(basePackages ="com.example.mapper")
public class Week1120201000000Application {public static void main(String[] args) {SpringApplication.run(Week1120201000000Application.class, args);}}

五、运行结果

1、postman使用

选择+输入+Key
点击Send
查看运行结果
请添加图片描述

2、localhost:8080/student/getAllStudent

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

3、localhost:8080/student/findStudentById?id=20201001111

在这里插入图片描述

在这里插入图片描述

4、localhost:8080/student/addStudent?sname=addtest&dept=depttest&age=10

在这里插入图片描述
在这里插入图片描述
用getAllStudent()查一下
在这里插入图片描述

5、localhost:8080/student/updateStudentByDynam

{"id":20201005591,"sname": "updatetest","dept": "updatetest"
}

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

6、localhost:8080/student/deleteStudentById?id=20201005564

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

最后,部分代码参考自大佬的软件工程综合实践课程第十一周作业( SpringBoot整合Mybatis完成CRUD操作并使用接口调试工具对接口进行测试)

相关内容

热门资讯

喜欢穿一身黑的男生性格(喜欢穿... 今天百科达人给各位分享喜欢穿一身黑的男生性格的知识,其中也会对喜欢穿一身黑衣服的男人人好相处吗进行解...
发春是什么意思(思春和发春是什... 本篇文章极速百科给大家谈谈发春是什么意思,以及思春和发春是什么意思对应的知识点,希望对各位有所帮助,...
网络用语zl是什么意思(zl是... 今天给各位分享网络用语zl是什么意思的知识,其中也会对zl是啥意思是什么网络用语进行解释,如果能碰巧...
为什么酷狗音乐自己唱的歌不能下... 本篇文章极速百科小编给大家谈谈为什么酷狗音乐自己唱的歌不能下载到本地?,以及为什么酷狗下载的歌曲不是...
华为下载未安装的文件去哪找(华... 今天百科达人给各位分享华为下载未安装的文件去哪找的知识,其中也会对华为下载未安装的文件去哪找到进行解...
怎么往应用助手里添加应用(应用... 今天百科达人给各位分享怎么往应用助手里添加应用的知识,其中也会对应用助手怎么添加微信进行解释,如果能...
家里可以做假山养金鱼吗(假山能... 今天百科达人给各位分享家里可以做假山养金鱼吗的知识,其中也会对假山能放鱼缸里吗进行解释,如果能碰巧解...
一帆风顺二龙腾飞三阳开泰祝福语... 本篇文章极速百科给大家谈谈一帆风顺二龙腾飞三阳开泰祝福语,以及一帆风顺二龙腾飞三阳开泰祝福语结婚对应...
美团联名卡审核成功待激活(美团... 今天百科达人给各位分享美团联名卡审核成功待激活的知识,其中也会对美团联名卡审核未通过进行解释,如果能...
四分五裂是什么生肖什么动物(四... 本篇文章极速百科小编给大家谈谈四分五裂是什么生肖什么动物,以及四分五裂打一生肖是什么对应的知识点,希...