gpt4 book ai didi

spring-mvc - 如何在 Spring @RestController 中将 Optional 作为 JSON 返回?

转载 作者:行者123 更新时间:2023-12-04 15:08:31 28 4
gpt4 key购买 nike

@RestController 中有代码:

@GetMapping("update_odds")
public Optional<OddsJSON> updateOdds() {
return eventService.updateOdds();
}

此方法在浏览器中的结果:
{
present: true
}

是否可以配置 Jackson mapper 来输出 Optional 的值?

最佳答案

只需要在 pom.xml 文件中添加:

<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jdk8</artifactId>
<version>2.6.3</version>
</dependency>

关于spring-mvc - 如何在 Spring @RestController 中将 Optional<T> 作为 JSON 返回?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39978618/

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