SpringMVC:HttpMessageConverter
HttpMessageConverter
HttpMessageConverter报文消息转换器,将请求报文转换为java对象,或将java对象转换为响应报文
HttpMessageConverter提供了两个注解和两个类型:@RequestBody、@ResponseBody、RequestEntity、ResponseEntity
1、@RequestBody(了解)
@RequestBody可以获取请求体,需要在控制器方法设置一个形参,使用@RequetsBody进行标识,当前请求的请求体就会为当前注解所标识的形参赋值。
<form th:action="@{/testRequestBody}" method="post">
姓名:<input type="text" name="username"><br/>
密码:<input type="text" name="password"><br/>
<input type="submit" value="提交">
</form>
@RequestMapping("/testRequestBody")
public String testRequestBody(@RequestBody String requestBody){
System.out.println("requestBody:"+requestBody);
return "success";
}
requestBody:username=admin&password=184497
注意:
GET方式无请求体,所以使用@RequestBody接收数据时,前端不能使用GET方式提交数据,而是用POST方式进行提交。在后端的同一个接收方法里,@RequestBody与@RequestParam()可以同时使用,@RequestBody最多只能有一个,而@RequestParam()可以有多个。
2、RequestEntity(了解)
RequestEntity封装请求报文的一种类型,需要在控制器方法的形参中设置该类型的形参,当前请求的请求报文就会赋值给该形参,可以通过getHeaders()获取请求头信息,通过getBody()获取请求体信息。
<form th:action="@{/testRequestEntity}" method="post">
姓名:<input type="text" name="username"><br/>
密码:<input type="text" name="password"><br/>
<input type="submit" value="testRequestEntity">
</form>
@RequestMapping("/testRequestEntity")
public String testRequestEntity(RequestEntity<String> requestEntity){
//当前requestEntity表示整个报文的信息
System.out.println("请求头:"+requestEntity.getHeaders());
System.out.println("请求体:"+requestEntity.getBody());
return "success";
}
请求头:[host:"localhost:8080", connection:"keep-alive", content-length:"24", cache-control:"max-age=0", sec-ch-ua:""Google Chrome";v="93", " Not;A Brand";v="99", "Chromium";v="93"", sec-ch-ua-mobile:"?0", sec-ch-ua-platform:""Windows"", upgrade-insecure-requests:"1", origin:"http://localhost:8080", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36", accept:"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", sec-fetch-site:"same-origin", sec-fetch-mode:"navigate", sec-fetch-user:"?1", sec-fetch-dest:"document", referer:"http://localhost:8080/", accept-encoding:"gzip, deflate, br", accept-language:"zh-CN,zh;q=0.9", cookie:"Idea-661643a5=a54e3feb-b38c-4150-abde-c5e9c178c5bb", Content-Type:"application/x-www-form-urlencoded;charset=UTF-8"]
请求体:username=ad&password=123
3、@ResponseBody
使用ServletAPI中的HttpServletResponse响应浏览器报文
@RequestMapping("/testHttpServletResponse")
public void testHttpServletResponse(HttpServletResponse response) throws IOException {
response.getWriter().print("hello HttpServletResponse");
}
@ResponseBody用于标识一个控制器方法,可以将该方法的返回值直接作为响应报文的响应体响应到浏览器
@RequestMapping("/testResponseBody")
@ResponseBody
public String testResponseBody(){
return "hello responsebody";
}
4、SpringMVC处理json
@ResponseBody处理json的步骤:
1、导入jackson的依赖
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.1</version>
</dependency>
2、在springmvc的核心配置文件中中开启mvc的注解驱动,此时在HandlerAdaptor中会自动装配一个消息转换器:
MappingJackson2HttpMessageConverter,可以将响应到浏览器的java对象转换为json格式的字符串
<mvc:annotation-driven/>
3、在处理器方法上使用@ResponseBody注解进行标识
@RequestMapping("/testJson")
@ResponseBody
public User testJson(){
return new User(1,"admin","1231321");
}
4、将java对象直接作为控制器方法的返回值返回,就会自动转换为json格式的字符串
浏览器的页面中显示的结果:{"id":1,"username":"admin","password":"1231321"}
5、SpringMVC处理ajax
<div id="app">
<a th:href="@{/testAxios}" @click="testAxios">测试axios</a>
</div>
<script th:src="@{/static/js/vue-2.4.0.js}"></script>
<script th:src="@{/static/js/axios.js}"></script>
<script>
var vm=new Vue({
el:'#app',
methods:{
testAxios:function (event) {
alert("1212");
axios({
method:"post",
url:event.target.href,
params:{
username:"admin",
password:"123",
}
}).then(function (response) {
alert(response.data);
});
event.preventDefault();
}
}
})
</script>
6、@RestController
@RestController注解是SpringMVC提供的一个复合注解,标识在控制器的类上,就相当于为类添加了@Controller注解,并且为其中的每个方法添加了@ResponseBody注解
7、ResponseEntity
ResponseEntity用于控制器方法的返回值类型,该控制器方法的返回值就是响应到浏览器的响应报文