1.需求 後臺管理頁面,查詢頻道列表,需要批量修改頻道的狀態,批量上線和下線 2.MyBatis配置 這是mysql的配置,註意需要加上&allowMultiQueries=true配置 jdbc_url=jdbc:mysql://localhost:3306/go?useUnicode=true& ...
1.需求
後臺管理頁面,查詢頻道列表,需要批量修改頻道的狀態,批量上線和下線
2.MyBatis配置
這是mysql的配置,註意需要加上&allowMultiQueries=true配置
jdbc_url=jdbc:mysql://localhost:3306/go?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true
<update id="batchUpdate" parameterType="java.util.List"> <foreach collection="list" item="item" index="index" open="" close="" separator=";"> update channels <set> state=${item.state} </set> where id = ${item.id} </foreach> </update>