spring-boot主要注解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring-boot主要注解相关的知识,希望对你有一定的参考价值。

一、@Controller 处理http请求

1、结合模版组件返回页面,spring-boot提供了spring-boot-starter-thymeleaf组件

2、结合@ResponseBoy返回JSON

二、@RestController 

Spring4新增的注解,等同于@Controller + @ResponseBody,返回JSON

三、@RequestMapping 处理url路由

1、value 绑定路径,可设置集合绑定多个;method限制请求方法

2、传入参数的处理

  a、@PathVariable 注解获取url中的数据

  b、@RequestParam 获取请求中的参数的值,查询字符串

  c、@GetMapping@PostMapping等,组合注解,等同于@RequestMapping + 特定请求方式的简化

 

疑问:如何获取Post请求体中数据、json等?

 

  

以上是关于spring-boot主要注解的主要内容,如果未能解决你的问题,请参考以下文章

springboot学习笔记

spring-boot 注解集合

Spring-Boot:拦截器注解范例

Spring-boot简单的理解

spring 源码

Spring/Spring-Boot 学习2 入门知识