Grails 可为空列返回 JSON 格式的 value = {“class”:“java.lang.Character”}

发布于 2024-10-26 00:51:49 字数 416 浏览 5 评论 0原文

我有一个连接到的遗留数据库,但不确定为什么当我解析客户端中的 json 对象时会得到这个结果。列字符customersMname在域静态约束中定义为:

customersMname nullable: true, maxSize: 1

当字段为空时,我从JSON对象返回的结果是:

<jsonname2>customersMname</jsonname2>
<jsonvalue2>{"class":"java.lang.Character"}</jsonvalue2>

数据库列中有实际数据,它应该是P。似乎这是用单个字符发生的当数据类型定义为 CHAR(1) 或 VARCHAR(1) 时 MYSQL 数据库中的列。有什么想法吗?

I have a legacy database that I connect to and not sure why I get this result when I parse the json object in my client. The column Character customersMname is defined in the domains static constraints as:

customersMname nullable: true, maxSize: 1

the result I get back from the JSON object when the field is null is:

<jsonname2>customersMname</jsonname2>
<jsonvalue2>{"class":"java.lang.Character"}</jsonvalue2>

There is actual data in the database column and it should be P. Seems this is occurring with single character columns in MYSQL db when the datatype is defined as CHAR(1) or VARCHAR(1). Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不如归去 2024-11-02 00:51:50

显然这是系统中的一个错误。解决方法是将域类型更改为 String 并完成它。

Apparently this is a bug in the system. Work around is to change the domain type to String and be done with it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文