Grails 可为空列返回 JSON 格式的 value = {“class”:“java.lang.Character”}
我有一个连接到的遗留数据库,但不确定为什么当我解析客户端中的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显然这是系统中的一个错误。解决方法是将域类型更改为 String 并完成它。
Apparently this is a bug in the system. Work around is to change the domain type to String and be done with it.