码迷,mamicode.com
首页 > 其他好文 > 详细

使用@RequestBody将请求体映射到Action方法参数中

时间:2019-03-26 15:25:00      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:请求   throw   utf8   throws   led   bsp   row   request   expect   

1     @PostMapping("/user")
2     public User create(@RequestBody User user){
3         System.out.println(user.toString());
4         user.setId(5l);
5         return user;
6     }
1     @Test
2     public void whenCreateSuccess() throws Exception {
3         String content = "{\"username\":\"fanqi\",\"password\":\"admin\",\"enabled\":\"1\"}";
4         mockMvc.perform(MockMvcRequestBuilders.post("/user")
5                 .contentType(MediaType.APPLICATION_JSON_UTF8)
6                 .content(content))
7                 .andExpect(status().isOk())
8                 .andExpect(jsonPath("$.id").exists());
9     }

 

使用@RequestBody将请求体映射到Action方法参数中

标签:请求   throw   utf8   throws   led   bsp   row   request   expect   

原文地址:https://www.cnblogs.com/fanqisoft/p/10600045.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!