为了账号安全,请及时绑定邮箱和手机立即绑定

为何account里面没有get?account是我自己的表对应的实体类

rg.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'account' in 'class org.approval.entity.Account'

    
Caused by: org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'account' in 'class org.approval.entity.Account'
   



正在回答

2 回答

解决了,应该是a_name = #{aName} and a_password = #{aPassword} and a_enable = 1

0 回复 有任何疑惑可以回复我~

难道是我的xml配置错了?

<mapper namespace="org.approval.dao.AccountDao">
   <!--目的: 为DAO接口方法提供SQL-->


   <select id="queryByName" parameterType="Account" resultType="Account">
       select
         a_id,a_name,a_password,a_grade,a_enable
       from
         account
       where
         a_name = #{account.aName} and a_password = #{account.aPassword} and a_enable = 1
   </select>

</mapper>

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为何account里面没有get?account是我自己的表对应的实体类

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信