Springboot 406错误

Springboot 406错误

简单的写了一个接口,然后406了。。。。

public class TestController {
    @GetMapping("/testGet/{message}")
    public Result testGet(@PathVariable String message){
        return Result.success(message);
    }
}
Resolved [org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation]

怀疑版本问题,将2.5更换为2.3.2,错误变成

Resolved [org.springframework.http.converter.HttpMessageNotWritableException: No converter found for return value of type: class com.huakai.entity.Result]

问题的解决
在Result中添加@Data注解,添加了Get/Set方法,估计是jackson将对象转化为Json的时候需要GS。。。。


版权声明:本文为weixin_43779268原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。