关于 Mybatia
实现插入 List
, 每次一段时间就忘了,这次决定记载下来。
Mapper层接口
1 | void bulkInsertAppTable(List<AppTable> appTableList); |
Xml实现
1 | <insert id="bulkInsertAppTable" parameterType="list" useGeneratedKeys="true" keyProperty="id"> |
关于 Mybatia
实现插入 List
, 每次一段时间就忘了,这次决定记载下来。
Mapper层接口
1 | void bulkInsertAppTable(List<AppTable> appTableList); |
Xml实现
1 | <insert id="bulkInsertAppTable" parameterType="list" useGeneratedKeys="true" keyProperty="id"> |