mybatis查询数据库返回结果对象为空

当实体类属性与表中列名不一样时,需要定义resultMap,否则查询对象为空

resultMap id="person" type="Person">
        <result property="username" column="name"></result>
        <result property="password" column="age"></result>
    </resultMap>

猜你喜欢

转载自blog.csdn.net/menglinjie/article/details/79656800