摘要:
一、没有级联属性的情况时 sqlmapper文件配置 <!-- 自定义resultMap type:指定返回的类型;id:指定resultMap的唯一标识 --> <resultMap type="com.pxxy.bean.Employee" id="empMap"> <id column="id 阅读全文
摘要:
一、返回list mapper接口方法: sqlmapper文件配置: <!-- 根据name模糊查询返回list resultType写list里面的类型,多个结果mybatis会自动添加到list中 --> <select id="selectEmpByNameLike" resultType= 阅读全文