无论采取什么方式,都有必要采取行动。 这是我所希望的工作,是否还有其他可能的办法?
行业:
Class ExampleDomain {
BigDecimal someNumber
def setSomeNumber = {setVal ->
println "Today is a good day to be the number: ${setVal}"
}
}
我只能对<代码>onUpdate上的事件以及像现在这样或现在有办法改变 Java物体驱动活动?
例如:
def thisThing = new ExampleDomain(someNumber:3.0) //prints "Today is a good day to be the number: 3.0"
thisThing.someNumber = 5.8 //prints "Today is a good day to be the number: 5.8"
thisThing.save() //prints nothing
这种可能的行为吗?