关闭Spring Boot的Jsckson的FAIL_ON_EMPTY_BEANS

Posted Jim

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关闭Spring Boot的Jsckson的FAIL_ON_EMPTY_BEANS相关的知识,希望对你有一定的参考价值。

说明:Spring Boot中默认使用了Jackson做JSON的解析。

解决方法:

1、通过注入Bean来实现

错误:

org.springframework.http.converter.HttpMessageNotWritableException: Could not write content: No serializer found for class com.google.common.cache.CacheStats and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS)

解决:

@Bean
public ObjectMapper objectMapper() {
        return new ObjectMapper().disable(SerializationFeature.FAIL_ON_EMPTY_BEANS);
}

 

参考:

https://www.jianshu.com/p/1eb0929503e1

以上是关于关闭Spring Boot的Jsckson的FAIL_ON_EMPTY_BEANS的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot Maven 插件 - spring-boot:run 和优雅关闭

spring-boot 2 优雅关闭网络

spring-boot-starter-parent 2.0.1.RELEASE下Spring Boot App立即关闭

Spring Boot 优雅关闭

Spring Boot Webflux/Netty - 检测关闭的连接

Spring Boot的优势[关闭]