mapper.xml文件,sql语句参数为list

<insert id="insertPjCustomAttribute" parameterType="com.devops.server.model.PjCustomAttribute">
        INSERT INTO 
     `PJ_CUSTOM_ATTRIBUTE`
(PJ_ID,NAME,VALUE,CREATE_TIME)
VALUES <foreach collection="list" item="listRelation" separator=","> (#{listRelation.pjId},#{listRelation.name},#{listRelation.value},#{listRelation.createTime}) foreach> insert>

此sql语句,mapper.java中的参数为List list,插入时,parameterType是PjCustomAttribute的全路径。

在foreach中,collection是list,item是遍历出来的每个PjCustomAttribute对象,在这儿我起的名字叫listRelation(可随意起名),separator以逗号分隔

#{ }中是对象的属性

转载于:https://www.cnblogs.com/audience7510/p/10476870.html

你可能感兴趣的:(mapper.xml文件,sql语句参数为list)