4
私はいくつかの要求を処理するためにSpring Controllerを使用しています。私は例外を超えています。私はapplication/json
、application/xml
などを処理しました。しかし、私は*/*
についてはわかりません。ここに私のコントローラコードです。ここでSpringBootの*/* content-typeの扱い
@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
私は何かが欠けています教えてください。