4
我正在使用Spring Controller來處理一些請求。我越來越例外。我已經處理了application/json
,application/xml
等,但我不確定*/*
以及它應該如何在控制器中處理。這是我的控制器代碼。在Spring Boot中處理*/*內容類型
@RequestMapping(value = "/handle", method = RequestMethod.POST)
public @ResponseBody Response handleRequest(HttpServletRequest request, @RequestBody TestDTO testDTO, HttpServletResponse httpServletResponse) throws Exception {
}
這裏是個例外:
Unexpected error: Content type '*/*;charset=UTF-8' not supported
org.springframework.web.HttpMediaTypeNotSupportedException: Content type '*/*;charset=UTF-8' not supported
請讓我知道我失去了一些東西。