使用mybatis的自动生成工具生成的主键id:
<selectKey resultType="java.lang.Integer" keyProperty="id" order="AFTER" > SELECT LAST_INSERT_ID()</selectKey> 使用sharding-jdbc时候 一直提示 分片报错, 可以使用这种方式解决:
<insert id="insertSelective" parameterType="com.zhuanche.driver.entity.FeedBack" keyProperty="id" useGeneratedKeys="true">...</insert>
原文地址:https://www.cnblogs.com/thinkingandworkinghard/p/11171035.html
时间: 2024-10-07 21:16:36