摘要:
resultType可以指定将查询结果映射为pojo,但需要pojo的属性名和sql查询的列名一致方可映射成功。 如果sql查询字段名和pojo的属性名不一致,可以通过resultMap将字段名和属性名作一个对应关系 ,resultMap实质上还需要将查询结果映射到pojo对象中。 resultMa 阅读全文
摘要:
一、传递简单数据类型 二、传入一个bean对象 三、传入一个包装对象(对象中存放对象) 阅读全文
摘要:
1:xml的配置 <insert id="insertUserBatch"> insert into user(username, birthday, sex, address) VALUES <foreach collection="list" item="User" index="index" 阅读全文
摘要:
一、比较灵活 1:xml的配置 <select id="selectUserByUsername1" parameterType="string" resultType="com.apcstudy.user.domain.User"> select * from user where usernam 阅读全文
摘要:
一、 useGeneratedKeys="true" <insert id="saveUser" parameterType="com.apcstudy.user.domain.User" useGeneratedKeys="true" keyProperty="id" keyColumn="id" 阅读全文