gpt4 book ai didi

json - Grails-将UUID渲染为JSON

转载 作者:行者123 更新时间:2023-12-02 14:52:18 25 4
gpt4 key购买 nike

我使用UUID作为域类的生成器。当我将域对象呈现为JSON时,id如下所示:

"id":{"class":"java.util.UUID","leastSignificantBits":-7570618374586820490,"mostSignificantBits":126481566314875615}

相反,我希望它看起来很简单,
"id":"01c15a50-7ed5-4adf-96ef-c2b2fcb51876"

当我将域对象呈现为XML时的样子。如何使它以这种方式工作?

最佳答案

如果您发布域类可能会有所帮助,但是我的假设是,它类似于以下内容:

class MyDomain {
UUID id = UUID.randomUUID()
}

除非您明确需要将其保留为UUID,否则我认为这将按您期望的方式呈现JSON:
class MyDomain {
String id = UUID.randomUUID().toString()
}

关于json - Grails-将UUID渲染为JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24330196/

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