在insert节点的userGeneratedKeys = true 设置向生成主键,然后keyProperty=”id” 把生成的主键指向属性
<insert id="add" parameterType="org.stm.entity.Student" userGeneratedKeys=true keyProperty="id">
insert into ssm_student(name,age,birthday,sex) value(#{name},#{age},#{birthday},#{sex})
</insert>