我将我的Idea项目转换为 Kotlin ,并遇到了以下错误:
org.hibernate.PropertyNotFoundException: Could not locate getter method for property [connector.model.SomeTable#tableId]
connector.model.SomeTable#tableId
来自xml映射。属性和表的名称都区分大小写。
我添加了@JvmField表示法来解决序列化问题,但这里没有运气。
这是类声明:
class SomeTable{
@JvmField
var tableId: Int? = null
...
}