org.hibernate.PropertyNotFoundException:无法找到属性的getter方法

时间:2019-01-27 12:28:57

标签: hibernate kotlin hibernate-mapping

我将我的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
...
}

0 个答案:

没有答案