springboot 返回JSON出错

Spring Boot: HttpMediaTypeNotAcceptableException: Could not find acceptable representation 解决方法。

Spring Boot的MVC默认配置中使用的 ViewResolver 为 ContentNegotiatingViewResolver,该视图解析器的功能是根据要请求的文档类型,来查找不同的视图以返回对应格式的文档。

viewResolver会根据你请求的URL的后缀判断请求的返回类型,如果是.html后缀的会被认为是返回静态页面。如果是.json后缀的会认为返回JSON数据。

解决方案:

我用.html请求JSON数据也就是加了@Responsebody才会报Spring Boot: HttpMediaTypeNotAcceptableException: Could not find acceptable representation这个错误。把我的请求地址改为.json的后缀,问题就解决了

如果不想接受spring boot默认的地址请求解析方案,可以自行配置更改。

你可能感兴趣的:(springboot 返回JSON出错)