Junit将多个参数传递给休息服务

时间:2015-04-21 10:32:52

标签: spring rest spring-mvc junit mockito

我有一个像贝洛一样的休息控制器:

@RequestMapping(value = "/create", method = RequestMethod.POST)
    public
    @ResponseBody
    GlobalResponse createDeal(@RequestBody Deal deal,@RequestBody Owner owner) {

// code here

}

我使用Junit和Mockito进行测试:

@Test
    public void createDeal() throws Exception{
        this.mockMvc.perform(post("/v1/Deal/create").content("\"deal\":{\"dealNumber\":\"DA001\"},\"owner\":{\"id\":1}").contentType(MediaType.APPLICATION_JSON)).andDo(print());
    }

我无法将多个参数传递给控制器​​服务,我该如何避免这种情况?

1 个答案:

答案 0 :(得分:4)

您将无法传递带有@RequestBody注释的多个参数。使用此注释注释的参数包含整个请求主体,并且不能将其拆分为多个。

您可以做的是拥有一个包装器来保存您的DealOwner对象,并且您可以将该包装器作为单个请求主体参数传递。

例如:

public class Wrapper {
    private Deal deal;
    private Owner owner;

    //Getters and setters
}

你控制器的方法:

@RequestMapping(value = "/create", method = RequestMethod.POST)
    public
    @ResponseBody
    GlobalResponse createDeal(@RequestBody Wrapper wrapper) {

// code here

}

希望这是有道理的。