大家好,我是考100分的小小码 ,祝大家学习进步,加薪顺利呀。今天说一说selectKey标签详解(*),希望您对编程的造诣更进一步.
1.为什么要使用selectKey
数据库主键包括自增和非自增,有时候新增一条数据不仅仅知道成功就行,后边的逻辑可能还需要这个新增的主键,这时候再查询数据库就有点儿耗时耗力,我们可以采用selectKey来帮助我们获取新增的主键
2.具体实现demo
查询数据库最简单的几步
(1)controller
@Controller
public class SelectKeyController {
@Autowired
SelectKeyServiceImpl selectKeyService;
public Integer String(){
Goods goods = new Goods();
goods.setAmount("100");
goods.setGname("红烧肉");
goods.setMid("666666");
goods.setPrice("25");
int insert = selectKeyService.insert(goods);
System.out.println("执行成功条数: " + insert);
System.out.println(goods.getId());
return goods.getId();
}
}
(2)service
@Service
public class SelectKeyServiceImpl implements SelectKeyService {
@Autowired
SelectKeyMapper selectKeyMapper;
@Override
public int insert(Goods goods) {
int insert = selectKeyMapper.insert(goods);
return insert;
}
}
(3)mapper
public interface SelectKeyMapper {
int insert(Goods goods);
}
(4)实体类(根据自己数据库表来写)
@Data
public class Goods {
//自增主键
private Integer id;
private String mid;
private String gname;
private String price;
private String amount;
private String imageName;
}
3.mapper.xml 文件
<mapper namespace="com.example.wjtweb.mapper.SelectKeyMapper">
<insert id="insert" parameterType="com.example.wjtweb.pojo.Goods">
<selectKey keyProperty="id" order="AFTER" resultType="Integer">
SELECT LAST_INSERT_ID()
</selectKey>
INSERT INTO Goods (MID,GNAME,PRICE,AMOUNT,imageName)
VALUES (#{
mid},#{
gname},#{
price},#{
amount},#{
imageName});
</insert>
</mapper>
selectKey 会将 SELECT LASTINSERTID() 的结果放入到传入的model的主键里面,keyProperty 对应的model中的主键的属性名,这里是 Goods 中的id,因为它跟数据库的主键对应,order AFTER 表示 SELECT LASTINSERTID() 在insert执行之后执行,多用于自增主键,BEFORE表示SELECT LASTINSERTID() 在insert执行之前执行,这样的话就拿不到主键了,这种适合那种主键不是自增的类型 resultType 主键类型
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/37293.html