Mybatis 插入数据,返回自增长的id

<insert id="insert" parameterType="Spares" 
		useGeneratedKeys="true" keyProperty="id">
	insert into spares(spares_id,spares_name,spares_type_id,spares_spec)
	values(#{id},#{name},#{typeId},#{spec})
</insert>

编程技巧