SpringMVC入门到实战——九 HttpMessageConverter @RequestBody 、@ResponseBody 、RequestEntity、ResponseEntity

追求适度,才能走向成功;人在顶峰,迈步就是下坡;身在低谷,抬足既是登高;弦,绷得太紧会断;人,思虑过度会疯;水至清无鱼,人至真无友,山至高无树;适度,不是中庸,而是一种明智的生活态度。

导读:本篇文章讲解 SpringMVC入门到实战——九 HttpMessageConverter @RequestBody 、@ResponseBody 、RequestEntity、ResponseEntity,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

HttpMessageConverter,报文信息转换器,将请求报文转换为Java对象,或将Java对象转换为响应报文

HttpMessageConverter提供了两个注解和两个类型:@RequestBody@ResponseBodyRequestEntityResponseEntity

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="@{/testResponse}">测试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="@{/testAxios}">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用于控制器方法的返回值类型,该控制器方法的返回值就是响应到浏览器的响应报文

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/131538.html

(0)
飞熊的头像飞熊bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!