Spring Boot项目快速创建-开发流程(笔记)

打印 上一主题 下一主题

主题 983|帖子 983|积分 2949

紧张流程:
  前端发送网络哀求->controller->调用service->利用mapper->操作数据库->对entity数据对象赋值->返回前端
    前期预备:
  maven、mysql下载好 
    跟学视频,感谢老师: https://www.bilibili.com/video/BV1gm411m7i6/?share_source=copy_web&vd_source=92d754038ee61d01dacfbb2bacae8320
  打点:
  00:00 - 42:53 GET接口
  42:54 - 51:24 POST接口
  51:25 - 54:20 DELETE接口
  54:21 - 1:02:11 UPDATE接口
  1:02:17 - 1:04:22 打包 
  一、项目创建 

初始化Spring boot应用:Spring Initializr
配置好以下内容(根据实际环境选择java版本) ,点GENERATE天生项目。

解压项目之后,idea打开open,导入项目标pom.xml文件。
 


项目结构,源代码全部放在JAVA文件夹下

因为还没有数据库,以是先把pom.xml里数据库的部分注释掉(否则会报错)

然后革新一下maven,手动reload一下

接下来实验运行,打开java文件,点击三角,运行main方法
 

可以望见运行起来

右键创建一个测试的controller,编写代码然后运行。
 

  1. package com.example.demo;
  2. import org.springframework.web.bind.annotation.GetMapping;
  3. import org.springframework.web.bind.annotation.RestController;
  4. @RestController
  5. public class TestController {
  6.     @GetMapping ("/hello")
  7.     public String hello() {
  8.         return "Hello World";
  9.     }
  10. }
复制代码
运行后,浏览器访问localhost:8080/hello

   ​基本概念
  

  • **@Controller**:标记类为 Spring MVC 控制器,处置处罚 HTTP 哀求并返回视图(如 HTML)。
  • ​**@ResponseBody**:将方法的返回值直接写入 HTTP 响体中,而非渲染视图。
  • ​**@RestController** = @Controller + @ResponseBody,​专用于 RESTful API,自动将返回对象转为 JSON/XML 格式。
  焦点功能
  

  • 通过 @RequestMapping、@GetMapping、@PostMapping 等注解绑定 URL 路径。
  改为List: 
  1. package com.example.demo;
  2. import org.springframework.web.bind.annotation.GetMapping;
  3. import org.springframework.web.bind.annotation.RestController;
  4. import java.util.List;
  5. @RestController
  6. public class TestController {
  7.     @GetMapping ("/hello")
  8.     public List<String> hello() {
  9.         return List.of("Hello","World");
  10.     }
  11. }
复制代码
显示JSON格式 :

 

 二、rest api规范

   8个HTTP方法:
  GET
POST
PUT
DELETE

OPTIONS
HEAD
TRACE
CONNECT
  1.创建数据库 

启动数据库:net start mysql
登录数据库:mysql -uroot -p1234(-u和-p后写本身的用户名和密码)
  1. //创建数据库
  2. create database test
  3.         character set utf8mb4
  4.         collate utf8mb4_general_ci
  5. //选中该数据库
  6. use test;
  7. //创建数据表
  8. create table student(
  9.         id int auto_increment primary key,
  10.         name varchar(50) not null,
  11.         phone char(11) not null,
  12.         age int
  13. );
  14. //插入一条数据
  15. insert into student (name,phone,age)
  16. values('TOM','12345678910',30);
复制代码
2.写实际代码

①GET接口

规复上面注释的依靠

新建对应的package,在package里新建接口StudentRepository:
 

再建一个学生类: 

  1. //Student.java
  2. package com.example.demo.dao;
  3. import jakarta.persistence.*;
  4. @Entity
  5. @Table(name="student")
  6. public class Student {
  7.     @Id
  8.     @Column(name = "id")
  9.     @GeneratedValue(strategy = GenerationType.IDENTITY)
  10.     private long id;
  11.     @Column(name = "name")
  12.     private String name;
  13.     @Column(name = "phone")
  14.     private String phone;
  15.     @Column(name = "age")
  16.     private int age;
  17.     public long getId() {
  18.         return id;
  19.     }
  20.     public void setId(long id) {
  21.         this.id = id;
  22.     }
  23.     public String getName() {
  24.         return name;
  25.     }
  26.     public void setName(String name) {
  27.         this.name = name;
  28.     }
  29.     public String getPhone() {
  30.         return phone;
  31.     }
  32.     public void setPhone(String phone) {
  33.         this.phone = phone;
  34.     }
  35.     public int getAge() {
  36.         return age;
  37.     }
  38.     public void setAge(int age) {
  39.         this.age = age;
  40.     }
  41. }
复制代码
  1. //StudentRepository.java
  2. package com.example.demo.dao;
  3. import org.springframework.data.jpa.repository.JpaRepository;
  4. import org.springframework.stereotype.Repository;
  5. @Repository
  6. public interface StudentRepository extends JpaRepository<Student,Long> {
  7. }
复制代码
然后再创建一个package,写service层,同样新建一个接口文件StudentService,以及对应的一个实现StudentServiceImpl
现在目录是这个格式:

  1. //StudentServiceImpl.java
  2. package com.example.demo.service;
  3. import com.example.demo.dao.Student;
  4. import com.example.demo.dao.StudentRepository;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.stereotype.Service;
  7. @Service
  8. public class StudentServiceImpl implements StudentService {
  9.    
  10.     @Autowired
  11.     private StudentRepository studentRepository;
  12.    
  13.     @Override
  14.     public Student getStudentById(long id) {
  15.         return studentRepository.findById(id).orElseThrow(RuntimeException::new);
  16.     }
  17. }
复制代码
  1. //StudentService.java
  2. package com.example.demo.service;
  3. import com.example.demo.dao.Student;
  4. public interface StudentService {
  5.     public Student getStudentById(long id);
  6. }
复制代码
接下来写对应的api层controller的代码,新建package名为controller,包里建StudentController类。

  1. package com.example.demo.controller;
  2. import com.example.demo.dao.Student;
  3. import com.example.demo.service.StudentService;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.web.bind.annotation.GetMapping;
  6. import org.springframework.web.bind.annotation.PathVariable;
  7. import org.springframework.web.bind.annotation.RestController;
  8. @RestController
  9. public class StudentController {
  10.     @Autowired
  11.     private StudentService studentService;
  12.     @GetMapping("/student/{id}")
  13.     public Student getStudent(@PathVariable long id) {
  14.         return studentService.getStudentById(id);
  15.     }
  16. }
复制代码
配置数据库url(用户名和密码写本身的):

  1. spring.datasource.url=jdbc:mysql://localhost:3306/test?characterEncoding=utf-8
  2. spring.datasource.username=root
  3. spring.datasource.password=1234
复制代码
在浏览器中输入  localhost:8080/student/1
返回信息: 
 



因为controller直接返回了这些值不敷规范,有些加密字段是不想展示给前端的,比如这里将年事保密,不显示。
以是新建一个dto的package以及StudentDTO对象,用来展示可以给前端的数据。

  1. package com.example.demo.dto;
  2. public class StudentDTO {
  3.     private long id;
  4.     private String name;
  5.     private String phone;
  6.     public long getId() {
  7.         return id;
  8.     }
  9.     public void setId(long id) {
  10.         this.id = id;
  11.     }
  12.     public String getName() {
  13.         return name;
  14.     }
  15.     public void setName(String name) {
  16.         this.name = name;
  17.     }
  18.     public String getPhone() {
  19.         return phone;
  20.     }
  21.     public void setPhone(String phone) {
  22.         this.phone = phone;
  23.     }
  24. }
复制代码
修改controller层和service层 :
  1. package com.example.demo.controller;
  2. import com.example.demo.Response;
  3. import com.example.demo.dao.Student;
  4. import com.example.demo.dto.StudentDTO;
  5. import com.example.demo.service.StudentService;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.web.bind.annotation.GetMapping;
  8. import org.springframework.web.bind.annotation.PathVariable;
  9. import org.springframework.web.bind.annotation.RestController;
  10. @RestController
  11. public class StudentController {
  12.     @Autowired
  13.     private StudentService studentService;
  14.     @GetMapping("/student/{id}")
  15.     public Response<StudentDTO> getStudent(@PathVariable long id) {
  16.         return Response.newSuccess(studentService.getStudentById(id));
  17.     }
  18. }
复制代码
  1. package com.example.demo.service;
  2. import com.example.demo.dao.Student;
  3. import com.example.demo.dto.StudentDTO;
  4. public interface StudentService {
  5.     StudentDTO getStudentById(long id);
  6. }
复制代码
  1. package com.example.demo.service;
  2. import com.example.demo.converter.StudentConverter;
  3. import com.example.demo.dao.Student;
  4. import com.example.demo.dao.StudentRepository;
  5. import com.example.demo.dto.StudentDTO;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.stereotype.Service;
  8. @Service
  9. public class StudentServiceImpl implements StudentService {
  10.     @Autowired
  11.     private StudentRepository studentRepository;
  12.     @Override
  13.     public StudentDTO getStudentById(long id) {
  14.         Student student= studentRepository.findById(id).orElseThrow(RuntimeException::new);
  15.          return StudentConverter.convertStudent(student);
  16.     }
  17. }
复制代码
新建package和类:

  1. package com.example.demo.converter;
  2. import com.example.demo.dao.Student;
  3. import com.example.demo.dto.StudentDTO;
  4. public class StudentConverter {
  5.     public static StudentDTO convertStudent(Student student) {
  6.         StudentDTO studentDTO = new StudentDTO();
  7.         studentDTO.setId(student.getId());
  8.         studentDTO.setName(student.getName());
  9.         studentDTO.setPhone(student.getPhone());
  10.         return studentDTO;
  11.     }
  12. }
复制代码
新建一个Response类,统逐一些后端访问的格式:

  1. package com.example.demo;
  2. public class Response <T>{
  3.     private T data;
  4.     private boolean success;
  5.     private String errorMsg;
  6.     public static <K> Response<K> newSuccess(K data) {
  7.         Response<K> response = new Response<>();
  8.         response.setData(data);
  9.         response.setSuccess(true);
  10.         return response;
  11.     }
  12.     public static Response<Void> newFail(String errorMsg) {
  13.         Response<Void> response = new Response<>();
  14.         response.setErrorMsg(errorMsg);
  15.         response.setSuccess(false);
  16.         return response;
  17.     }
  18.     public T getData() {
  19.         return data;
  20.     }
  21.     public void setData(T data) {
  22.         this.data = data;
  23.     }
  24.     public boolean isSuccess() {
  25.         return success;
  26.     }
  27.     public void setSuccess(boolean success) {
  28.         this.success = success;
  29.     }
  30.     public String getErrorMsg() {
  31.         return errorMsg;
  32.     }
  33.     public void setErrorMsg(String errorMsg) {
  34.         this.errorMsg = errorMsg;
  35.     }
  36. }
复制代码
 把代码都修改完之后启动,可以望见age隐藏了没有显示。返回成功。
 

以上是完备的GET查询接口的实现,用来查询id=1的学生信息。

②POST接口

接下来新增一个POST接口,用来新增学生信息。
目标:将前端传来的json文件转为Java对象存储至数据库。因为传过来的DTO,以是须要converter,之以是返回getbyid,因为这个方法返回是Long。
编写代码,在原有文件上新增就行,以下复制完备的:
  1. package com.example.demo.controller;
  2. import com.example.demo.Response;
  3. import com.example.demo.dao.Student;
  4. import com.example.demo.dto.StudentDTO;
  5. import com.example.demo.service.StudentService;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.web.bind.annotation.*;
  8. @RestController
  9. public class StudentController {
  10.     @Autowired
  11.     private StudentService studentService;
  12.     @GetMapping("/student/{id}")
  13.     public Response<StudentDTO> getStudent(@PathVariable long id) {
  14.         return Response.newSuccess(studentService.getStudentById(id));
  15.     }
  16.     @RequestMapping("/student")
  17.     @PostMapping("/student")
  18.     public Response<Long> addNewStudent(@RequestParam StudentDTO studentDTO) {
  19.         return Response.newSuccess(studentService.addNewStudent(studentDTO));
  20.     }
  21. }
复制代码
  1. package com.example.demo.service;
  2. import com.example.demo.dao.Student;
  3. import com.example.demo.dto.StudentDTO;
  4. public interface StudentService {
  5.     StudentDTO getStudentById(long id);
  6.    
  7.     Long addNewStudent(StudentDTO studentDTO);
  8. }
复制代码
  1. package com.example.demo.service;
  2. import com.example.demo.converter.StudentConverter;
  3. import com.example.demo.dao.Student;
  4. import com.example.demo.dao.StudentRepository;
  5. import com.example.demo.dto.StudentDTO;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.stereotype.Service;
  8. import org.springframework.util.CollectionUtils;
  9. import java.util.List;
  10. @Service
  11. public class StudentServiceImpl implements StudentService {
  12.     @Autowired
  13.     private StudentRepository studentRepository;
  14.     @Override
  15.     public StudentDTO getStudentById(long id) {
  16.         Student student= studentRepository.findById(id).orElseThrow(RuntimeException::new);
  17.         return StudentConverter.convertStudent(student);
  18.     }
  19.     @Override
  20.     public Long addNewStudent(StudentDTO studentDTO) {
  21.         List<Student> studentList=studentRepository.findByPhone(studentDTO.getPhone());
  22.         if (!CollectionUtils.isEmpty(studentList)){
  23.             throw new IllegalStateException("phone:"+studentDTO.getPhone()+" has been taken");
  24.         }
  25.         Student student=studentRepository.save(StudentConverter.convertStudent(studentDTO));
  26.         return student.getId();
  27.     }
  28. }
复制代码
  1. package com.example.demo.converter;
  2. import com.example.demo.dao.Student;
  3. import com.example.demo.dto.StudentDTO;
  4. public class StudentConverter {
  5.     public static StudentDTO convertStudent(Student student) {
  6.         StudentDTO studentDTO = new StudentDTO();
  7.         studentDTO.setId(student.getId());
  8.         studentDTO.setName(student.getName());
  9.         studentDTO.setPhone(student.getPhone());
  10.         return studentDTO;
  11.     }
  12.     public static Student convertStudent(StudentDTO studentDTO) {
  13.         Student student = new Student();
  14.         student.setName(studentDTO.getName());
  15.         student.setPhone(studentDTO.getPhone());
  16.         return student;
  17.     }
  18. }
复制代码
  1. package com.example.demo.dao;
  2. import org.springframework.data.jpa.repository.JpaRepository;
  3. import org.springframework.stereotype.Repository;
  4. import java.util.List;
  5. @Repository
  6. public interface StudentRepository extends JpaRepository<Student,Long> {
  7.     List<Student> findByPhone(String phone);
  8. }
复制代码
 修改完代码就可以使用Postman工具新增学生信息(没有下载以是跳过这步了)

③DELETE接口

接下来实现DELETE删除接口。
在原有文件新增就行,新增代码如下:
  1. //StudentController
  2.     @DeleteMapping("/student/{id}")
  3.     public void deleteStudentById(@PathVariable long id) {
  4.         studentService.deleteStudentById(id);
  5.     }
  6. //StudentService
  7. void deleteStudentById(long id);
  8. //StudentServiceImpl
  9. @Override
  10.     public void deleteStudentById(long id) {
  11.         studentRepository.findById(id).orElseThrow(() -> new IllegalArgumentException("id:"+ id +"doesn't exist!"));
  12.         studentRepository.deleteById(id);
  13.     }
复制代码
接下来也是使用postman来删除和查询。(没下载以是又跳过这步,之后如果下载了再来补) 

④UPDATE接口

接下来实现UPDATE接口。
在原有文件新增代码如下:
  1. //StudentController
  2.      @PutMapping("/student/{id}")
  3.     public Response<StudentDTO> updateStudentById(@PathVariable long id, @RequestParam (required = false)String name,
  4.                                               @RequestParam(required = false)String phone) {
  5.         return Response.newSuccess(studentService.updataStudentById(id,name,phone));
  6.     }
  7. //StudentService
  8. StudentDTO updataStudentById(long id, String name, String phone);
  9. //StudentServiceImpl
  10. @Override
  11.     @Transactional
  12.     public StudentDTO updataStudentById(long id, String name, String phone) {
  13.         Student studentInDB=studentRepository.findById(id).orElseThrow(() -> new IllegalArgumentException("id:"+ id +"doesn't exist!"));
  14.         if(StringUtils.hasLength(name) && !studentInDB.getName().equals(name)){
  15.             studentInDB.setName(name);
  16.         }
  17.         if(StringUtils.hasLength(phone) && !studentInDB.getPhone().equals(phone)){
  18.             studentInDB.setPhone(phone);
  19.         }
  20.         Student student=studentRepository.save(studentInDB);
  21.         return StudentConverter.convertStudent(student);
  22.     }
复制代码
接下来也是使用postman来更新和查询。
三、打包项目 

使用下令:mvn clean install 
 

但是出现错误:

错误信息:
  1. [ERROR] Failed to execute goal org.apache.maven.plugins:maven-clean-plugin:3.4.1:clean (default-clean) on project demo: The plugin org.apache.maven.plugins:maven-clean-plugin:3.4.1 requires Maven version 3.6.3 -> [Help 1]
  2. [ERROR]
  3. [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
  4. [ERROR] Re-run Maven using the -X switch to enable full debug logging.
  5. [ERROR]
  6. [ERROR] For more information about the errors and possible solutions, please read the following articles:
  7. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginIncompatibleException
复制代码
缘故原由是当前maven版本为3.6.1,但项目依靠 Spring Boot 3.4.4,官方要求 ​Maven 3.8.8+ 或 ​Java 21+。
重新下载更高级的maven版本:Welcome to Apache Maven – Maven
下载教程:Maven下载以及项目创建(笔记)_maven 依靠 如何下载 com.github-CSDN博客
须要注意!重新配置maven环境变量时,最好删除原来的MAVEN_HOME,重新添加,否则不会更新。 
IDEA重新配置maven路径,重启:

可以看到已经将版本更新了 

使用下令:mvn clean install ,成功啦!!


复制一下jar包路径
 

可以用java -jar demo-0.0.1-SNAPSHOT.jar来启动项目: 
 

以上,总结:


完结撒花,零基础,耗时7小时。


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

滴水恩情

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表