Spring Boot 的 web 场景自动引入了 json 场景:

    1. <dependency>
    2. <groupId>org.springframework.boot</groupId>
    3. <artifactId>spring-boot-starter-web</artifactId>
    4. </dependency>
    5. ->
    6. <dependency>
    7. <groupId>org.springframework.boot</groupId>
    8. <artifactId>spring-boot-starter-json</artifactId>
    9. <version>2.3.4.RELEASE</version>
    10. <scope>compile</scope>
    11. </dependency>