There is no getter for property named 'appName' in 'class com.incostar.homepage.domain.entity.PortalAppExample'
时间: 2024-04-25 12:22:27 浏览: 112
使用Mybatis遇到的there is no getter异常
这个错误表示在 'com.incostar.homepage.domain.entity.PortalAppExample' 类中没有名为 'appName' 的属性的 getter 方法。可能是因为在该类中没有定义名为 'appName' 的属性,或者忘记了为该属性生成 getter 方法。请检查该类的定义并确保正确定义了所需的属性和对应的 getter 方法。
阅读全文