SpringMVC的定义:Spring Web MVC is the original web framework built on the Servlet API and included in the Spring Framework from the very beginning. 在Spring中使用SpringMVC需要进行一系列的配置,如果用SpringBoot可以省去这些配置,本文主要总结SpringMVC中常用注解 必要注解 首先是@Controller,此注解加在类名上面,表示
1.RequestBody接收json格式的数据,并直接转为对象. User.java使用lombok依赖包 @Data @AllArgsConstructor @NoArgsConstructor @ToString public class User{ private int id; private String name; } UserController.java @Controller public class UserController { @GetMapping("/testJs