我有一个 Grails 应用程序,我在其中解析一个 XML 文件并使用解析的数据来创建对象并将它们保存到 MySQL 数据库中。
我的一门课有一个Float
属性:
class Foo {
// ...
Float myFloat
static constraints = {
myFloat(scale: 9) // Trying to specify 9 digits of precision, but this doesn't seem to be making any difference
}
// ...
}
在解析 XML 时,我得到了一个值为6378137
. 我想将该值分配给myFloat
:
class MyService{
// ...
def xml = new XmlParser().parseText(myXmlFile.getText())
def foo = new Foo(
myFloat: xml.attribute("my_float")?.toFloat()
).save()
// ...
}
此时在调试器中我可以看到 is 的myFloat
值6378137.0
。问题是事务提交后存储在数据库中的值是6378140
.
为什么不myFloat
与我分配给它的值一起存储?