gpt4 book ai didi

spring - 在 Spring Webflux 中使用 Gson 而不是 Jackson

转载 作者:行者123 更新时间:2023-12-04 12:00:51 27 4
gpt4 key购买 nike

我们已经有很多 Spring MVC 项目,它们都使用 gson 而不是 jackson 进行响应体编码。我们的bean类都是基于gson注解编写的。现在我正在设置一个 Spring Webflux Restful 服务器。如果我们可以使用 Spring MVC 项目中的旧 bean 类,将会节省大量工作。

我试过 spring.http.converters.preferred-json-mapper=gson属性(property)无济于事。

我试过 HttpMessageConverter bean,它包含在 webflux 包中,但它不像在 Spring MVC 项目中那样工作。

我用谷歌搜索了很多,唯一有用的是实现 org.springframework.http.codec.HttpMessageEncoder类并将其设置为 WebFluxConfigurer.configureHttpMessageCodecs()方法:

@Configuration
public class WebConfiguration implements WebFluxConfigurer {
@Override
public void configureHttpMessageCodecs(ServerCodecConfigurer configurer) {
configurer.customCodecs().decoder(new GsonHttpMessageDecoder());
configurer.customCodecs().encoder(new GsonHttpMessageEncoder());
}

private static class GsonHttpMessageEncoder implements HttpMessageEncoder {
...
}

private static class GsonHttpMessageDecoder implements HttpMessageDecoder {
...
}
}

我还没有尝试过,因为它有点复杂。有没有什么简单的方法可以在 Spring Webflux 中用 gson 替换 jackson?

任何帮助表示赞赏。

最佳答案

Spring Framework 不支持 GSON 作为 WebFlux Encoder/Decoder目前。欢迎联系 follow up on the dedicated issue .
请注意,据我所知,GSON 不支持非阻塞解析,因此即使在 Framework 中实现了支持,它也不会完整,也不应该涵盖流输入用例。

关于spring - 在 Spring Webflux 中使用 Gson 而不是 Jackson,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58387873/

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