Swagger始终显示带有No Content消息的代码0

时间:2017-12-14 10:44:37

标签: json spring-boot swagger swagger-ui http-status-codes

我的SpringBoot应用程序中有这个@RestController方法:

@ApiOperation(value = "fetch")
@RequestMapping(value = "/", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
public ResponseEntity<? extends Object> fetch(@RequestBody UserDTO user){

        return new ResponseEntity("Depricated you should use v1.0.1...", HttpStatus.NOT_ACCEPTABLE);

    }

每当我调用端点时,我都会在swagger上获得一个没有内容消息的代码0。但是使用Restlet chrome扩展我看到了我的消息和NOT_ACCEPTABLE 406代码。知道为什么这种情况只会随心所欲地发生吗?以及如何解决它?

0 个答案:

没有答案