gpt4 book ai didi

hibernate - 配置 Jackson 在 Spring Boot 中省略延迟加载属性

转载 作者:行者123 更新时间:2023-12-02 22:09:25 24 4
gpt4 key购买 nike

在纯java配置的spring boot mvc项目中如何配置Jackson以省略延迟加载属性

最佳答案

使用最新版本的 Spring Boot,这要容易得多。

Any beans of type com.fasterxml.jackson.databind.Module will be automatically registered with the auto-configured Jackson2ObjectMapperBuilder and applied to any ObjectMapper instances that it creates. This provides a global mechanism for contributing custom modules when you add new features to your application.

74.3 Customize the Jackson ObjectMapper

首先确保您具有所需的 Jackson 依赖项:

<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-hibernate4</artifactId>
</dependency>

然后,您可以将该模块作为 @Bean 包含在应用程序上下文中。

@Bean
public Module hibernate4Module()
{
return new Hibernate4Module();
}

关于hibernate - 配置 Jackson 在 Spring Boot 中省略延迟加载属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33727017/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com