<insert id="insertUserInfo" parameterType="com.entity.User" useGeneratedKeys="true" keyProperty="userId"> </insert>
在Mybatis Mapper.xml文件中添加属性"useGeneratedKeys"和"keyProperty"
useGeneratedKeys是告诉MyBatis 使用JDBC 的getGeneratedKeys 方法来获取数据库自己生成的主键keyProperty是bean中的主键字段
这时就可以用 user.getId() 来获取值了。
© 著作权归作者所有
文章评论(0)