postman可以很好的模拟浏览器并向API发送Request请求,所以一起来下载一下…
Postman下载地址
下载好后,注册账户,就可以开始用了,具体使用方法后面测试时讲
Jsp和serlvet是开发动态web的一门技术,特别擅长开发B/S架构的程序,jsp和html文件相似。但是,SpringBoot不推荐使用JSP,所以如果想在SpringBoot中使用JSP,需要自己做一些配置。
Servlet本质上就是Java类,但要遵循Servlet规范进行编写,它的创建、调用、销毁都由Servlet容器进行管理(如Tomcat,Jetty, WebLogic Server, JBoss等)。
在企业级Web项目开发中,标准的三层架构包括:表现层、业务层、数据访问层(持久层)。三层架构中,每一层各司其职,其中:
MVC
@Controller
//作用:修饰类,一个类被它修饰,就成了控制器类,负责接收和处理 HTTP 请求,可以返回页面和数据;
@RestController (@Controller+@ResponseBody 的组合注解)
//作用:修饰类,一个类被它修饰,就成了控制器类,只返回给用户数据,默认将返回的对象数据转换为 json 格式@RequestMapping
//作用:负责 URL 的路由映射,建立请求 URL 和处理请求方法之间的对应关系,可以修饰类或类中的方法
@RequestParam
//作用:将请求参数绑定到控制器的方法参数上,接收的参数来自http请求体或请求的url的QueryString
@RequestBody
//该注解主要用来接收前端传递给后端的 json 字符串中的数据(请求体中的数据的)。
@PathVaraible
//作用:处理动态URL,URL的值可以作为控制器中处理方法的参数,主要用于RestFul风格中
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命令
4.0.0 org.springframework.boot spring-boot-starter-parent 2.7.5 com.example week11_20201000000 0.0.1-SNAPSHOT week11_20201000000 week11_20201000000 1.8 org.springframework.boot spring-boot-starter-web org.mybatis.spring.boot mybatis-spring-boot-starter 2.2.2 com.mysql mysql-connector-j runtime org.projectlombok lombok true org.springframework.boot spring-boot-starter-test test src/main/java **/*.xml src/main/resources **.* org.springframework.boot spring-boot-maven-plugin org.projectlombok lombok
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;
}
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
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}
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
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
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
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);}}
选择+输入+Key
点击Send
查看运行结果
用getAllStudent()查一下
{"id":20201005591,"sname": "updatetest","dept": "updatetest"
}
最后,部分代码参考自大佬的软件工程综合实践课程第十一周作业( SpringBoot整合Mybatis完成CRUD操作并使用接口调试工具对接口进行测试)
上一篇:C语言百日刷题第七天
下一篇:Allegro原理图反标教程