HttpMessageConverter
,报文信息转换器,将请求报文转换为Java
对象,或将Java
对象转换为响应报文
HttpMessageConverter
提供了两个注解和两个类型:@RequestBody
,@ResponseBody
,RequestEntity
, ResponseEntity
1、@RequestBody
@RequestBody可以获取请求体,需要在控制器方法设置一个形参,使用@RequestBody进行标识,当前请求的请求体就会为当前注解所标识的形参赋值
<form th:action="@{/testRequestBody}" method="post">
姓名:<input type="text" name="username">
密码:<input type="password" name="password">
性别:<input type="text" name="sex">
<button type="submit" >提交</button>
</form>
/**
* 测试requestBody
* @param requestBody
* @return
*/
@RequestMapping(value = "/testRequestBody", method = RequestMethod.POST)
public String testRequestBody(@RequestBody String requestBody) {
System.out.println(requestBody);
return "success";
}
测试结果
2、RequestEntity
RequestEntity封装请求报文的一种类型,需要在控制器方法的形参中设置该类型的形参,当前请求的请求报文就会赋值给该形参,可以通过getHeaders()获取请求头信息,通过getBody()获取请求体信息
<form th:action="@{/testRequestEntity}" method="post">
姓名:<input type="text" name="username">
密码:<input type="password" name="password">
<button type="submit" >提交</button>
</form>
/**
* 测试requestEntity
* @param requestEntity
* @return
*/
@RequestMapping(value = "/testRequestEntity", method = RequestMethod.POST)
public String testRequestEntity(RequestEntity<String> requestEntity) {
System.out.println("请求头:" + requestEntity.getHeaders());
System.out.println("请求体:" + requestEntity.getBody());
return "success";
}
测试结果
3、@ResponseBody
@ResponseBody用于标识一个控制器方法,可以将该方法的返回值直接作为响应报文的响应体响应到浏览器
<a th:href="https://www.ctyun.cn/portal/link.html?target=%40%7B%2FtestResponse%7D">测试response</a>
/**
* 测试response
* @param response
* @throws IOException
*/
@RequestMapping("/testResponse")
public void testResponse(HttpServletResponse response) throws IOException {
response.getWriter().print("hello,Resopnse");
}
测试结果
4、SpringMVC处理json
@ResponseBody处理json的步骤:
- 导入jackson的依赖
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.1</version>
</dependency>
- 在SpringMVC的核心配置文件中开启mvc的注解驱动,此时在HandlerAdaptor中会自动装配一个消息转换器:MappingJackson2HttpMessageConverter,可以将响应到浏览器的Java对象转换为Json格式的字符串
<mvc:annotation-driven />
- 在处理器方法上使用@ResponseBody注解进行标识
- 将Java对象直接作为控制器方法的返回值返回,就会自动转换为Json格式的字符串
/**
* 如果返回数组对象 返回一个对象
* @return
*/
@RequestMapping("/testResponseUser")
@ResponseBody
public List<User> testResponseUser() {
User user1 = new User("张三", "男");
User user2 = new User("李四", "男");
ArrayList<User> list = new ArrayList<>();
list.add(user1);
list.add(user2);
return list;
}
测试结果
提示:可以是对象数组、也可以是对象
5、SpringMVC处理ajax
使用到了vue、axios。需要下载对应的文件
请求链接:
<div id="app">
<a @click="testAxios" th:href="https://www.ctyun.cn/portal/link.html?target=%40%7B%2FtestAxios%7D">SpringMVC处理axios</a>
</div>
<script type="text/javascript" th:src="@{/static/js/vue.js}"></script>
<script type="text/javascript" th:src="@{/static/js/axios.min.js}"></script>
<script type="text/javascript">
new Vue({
el:"#app",
methods:{
testAxios:function (event){
axios({
method:'post',
url:event.target.href,
params:{
username:"张三",
password:"123456"
}
}).then(function (res){
alert(res.data)
})
event.preventDefault();
}
}
})
</script>
控制器方法
/**
* 测试axios
* @param username
* @param password
* @return
*/
@RequestMapping("/testAxios")
@ResponseBody
public String testAxios(String username,String password){
System.out.println("姓名:"+username+",密码:"+password);
return "hello,axios";
}
测试结果
6、@RestController注解
我终于深刻理解RestController和Controller两者的使用场景
@RestController
注解是springMVC
提供的一个复合注解,标识在控制器的类上,就相当于为类添加了@Controller
注解,并且为其中的每个方法添加了@ResponseBody
注解
7、ResponseEntity
ResponseEntity
用于控制器方法的返回值类型,该控制器方法的返回值就是响应到浏览器的响应报文