DBMNG数据库管理与应用

科学是实事求是的学问,来不得半点虚假。
当前位置:首页 > 经验分享 > Java组件

MyBatis之动态SQL语句

有些时候,sql语句where条件中,需要一些安全判断,例如按某一条件查询时如果传入的参数是空,此时查询出的结果很可能是空的,也许我们需要参数为空时,是查出全部的信息。使用Oracle的序列、mysql的函数生成Id。这时我们可以使用动态sql。
下文均采用mysql语法和函数(例如字符串链接函数CONCAT)。

3.1 selectKey 标签
在insert语句中,在Oracle经常使用序列、在MySQL中使用函数来自动生成插入表的主键,而且需要方法能返回这个生成主键。使用myBatis的selectKey标签可以实现这个效果。   下面例子,使用mysql数据库自定义函数nextval('student'),用来生成一个key,并把他设置到传入的实体类中的studentId属性上。所以在执行完此方法后,边可以通过这个实体类获取生成的key。
  1.     <!-- 插入学生 自动主键-->    
  2.     <insert id="createStudentAutoKey" parameterType="liming.student.manager.data.model.StudentEntity" keyProperty="studentId">    
  3.         <selectKey keyProperty="studentId" resultType="String" order="BEFORE">    
  4.             select nextval('student')    
  5.         </selectKey>    
  6.         INSERT INTO STUDENT_TBL(STUDENT_ID,    
  7.                                 STUDENT_NAME,    
  8.                                 STUDENT_SEX,    
  9.                                 STUDENT_BIRTHDAY,    
  10.                                 STUDENT_PHOTO,    
  11.                                 CLASS_ID,    
  12.                                 PLACE_ID)    
  13.         VALUES (#{studentId},    
  14.                 #{studentName},    
  15.                 #{studentSex},    
  16.                 #{studentBirthday},  <pre name="code" class="html">    StudentEntity entity = new StudentEntity();    
  17.     entity.setStudentName("黎明你好");    
  18.     entity.setStudentSex(1);    
  19.     entity.setStudentBirthday(DateUtil.parse("1985-05-28"));    
  20.     entity.setClassId("20000001");    
  21.     entity.setPlaceId("70000001");    
  22.     this.dynamicSqlMapper.createStudentAutoKey(entity);    
  23.     System.out.println("新增学生ID: " + entity.getStudentId());  </pre><br>  
  24. #{studentPhoto, javaType=byte[], jdbcType=BLOBtypeHandler=org.apache.ibatis.type.BlobTypeHandler}, #{classId}, #{placeId}) </insert>  
  25. <pre></pre>  
  26. 调用接口方法,和获取自动生成key<br>  
  27. <pre name="code" class="html">    StudentEntity entity = new StudentEntity();    
  28.     entity.setStudentName("黎明你好");    
  29.     entity.setStudentSex(1);    
  30.     entity.setStudentBirthday(DateUtil.parse("1985-05-28"));    
  31.     entity.setClassId("20000001");    
  32.     entity.setPlaceId("70000001");    
  33.     this.dynamicSqlMapper.createStudentAutoKey(entity);    
  34.     System.out.println("新增学生ID: " + entity.getStudentId());  </pre>selectKey语句属性配置细节:<br>  
  35. 属性     描述     取值<br>  
  36. keyProperty     selectKey 语句生成结果需要设置的属性。     <br>  
  37. resultType     生成结果类型,MyBatis 允许使用基本的数据类型,包括String 、int类型。     <br>  
  38. order     <br>  
  39. 1:BEFORE,会先选择主键,然后设置keyProperty,再执行insert语句;<br>  
  40. 2:AFTER,就先运行insert 语句再运行selectKey 语句。     <br>  
  41. BEFORE<br>  
  42. AFTER<br>  
  43. statementType     MyBatis 支持STATEMENT,PREPARED和CALLABLE 的语句形式, 对应Statement ,PreparedStatement 和CallableStatement 响应     <br>  
  44. STATEMENT,PREPARED,CALLABLE<br>  
  45. <strong>3.2 if标签</strong><br>  
  46. if标签可用在许多类型的sql语句中,我们以查询为例。首先看一个很普通的查询:<pre name="code" class="html">    <!-- 查询学生list,like姓名 -->    
  47.     <select id="getStudentListLikeName" parameterType="StudentEntity" resultMap="studentResultMap">    
  48.         SELECT * from STUDENT_TBL ST     
  49.     WHERE ST.STUDENT_NAME LIKE CONCAT(CONCAT('%', #{studentName}),'%')    
  50.     </select>  </pre>但是此时如果studentName或studentSex为null,此语句很可能报错或查询结果为空。此时我们使用if动态sql语句先进行判断,如果值为null或等于空字符串,我们就不进行此条件的判断,增加灵活性。<br>  
  51. 参数为实体类StudentEntity。将实体类中所有的属性均进行判断,如果不为空则执行判断条件。<br>  
  52. <pre name="code" class="html"><!-- 2 if(判断参数) - 将实体类不为空的属性作为where条件 -->    
  53.     <select id="getStudentList_if" resultMap="resultMap_studentEntity" parameterType="liming.student.manager.data.model.StudentEntity">    
  54.         SELECT ST.STUDENT_ID,    
  55.                ST.STUDENT_NAME,    
  56.                ST.STUDENT_SEX,    
  57.                ST.STUDENT_BIRTHDAY,    
  58.                ST.STUDENT_PHOTO,    
  59.                ST.CLASS_ID,    
  60.                ST.PLACE_ID    
  61.           FROM STUDENT_TBL ST     
  62.          WHERE    
  63.         <if test="studentName !=null ">    
  64.             ST.STUDENT_NAME LIKE CONCAT(CONCAT('%', #{studentName, jdbcType=VARCHAR}),'%')    
  65.         </if>    
  66.         <if test="studentSex != null and studentSex != '' ">    
  67.             AND ST.STUDENT_SEX = #{studentSex, jdbcType=INTEGER}    
  68.         </if>    
  69.         <if test="studentBirthday != null ">    
  70.             AND ST.STUDENT_BIRTHDAY = #{studentBirthday, jdbcType=DATE}    
  71.         </if>    
  72.         <if test="classId != null and classId!= '' ">    
  73.             AND ST.CLASS_ID = #{classId, jdbcType=VARCHAR}    
  74.         </if>    
  75.         <if test="classEntity != null and classEntity.classId !=null and classEntity.classId !=' ' ">    
  76.             AND ST.CLASS_ID = #{classEntity.classId, jdbcType=VARCHAR}    
  77.         </if>    
  78.         <if test="placeId != null and placeId != '' ">    
  79.             AND ST.PLACE_ID = #{placeId, jdbcType=VARCHAR}    
  80.         </if>    
  81.         <if test="placeEntity != null and placeEntity.placeId != null and placeEntity.placeId != '' ">    
  82.             AND ST.PLACE_ID = #{placeEntity.placeId, jdbcType=VARCHAR}    
  83.         </if>    
  84.         <if test="studentId != null and studentId != '' ">    
  85.             AND ST.STUDENT_ID = #{studentId, jdbcType=VARCHAR}    
  86.         </if>     
  87.     </select>  </pre><br>  
  88. <br>  
  89. 使用时比较灵活, new一个这样的实体类,我们需要限制那个条件,只需要附上相应的值就会where这个条件,相反不去赋值就可以不在where中判断。<br>  
  90. <pre name="code" class="html">    public void select_test_2_1() {    
  91.         StudentEntity entity = new StudentEntity();    
  92.         entity.setStudentName("");    
  93.         entity.setStudentSex(1);    
  94.         entity.setStudentBirthday(DateUtil.parse("1985-05-28"));    
  95.         entity.setClassId("20000001");    
  96.         //entity.setPlaceId("70000001");    
  97.         List<StudentEntity> list = this.dynamicSqlMapper.getStudentList_if(entity);    
  98.         for (StudentEntity e : list) {    
  99.             System.out.println(e.toString());    
  100.         }    
  101.     }  </pre><strong>3.3 if + where 的条件判断</strong><br>  
  102. 当where中的条件使用的if标签较多时,这样的组合可能会导致错误。我们以在3.1中的查询语句为例子,当java代码按如下方法调用时:<br>  
  103. <pre name="code" class="html">    @Test    
  104.     public void select_test_2_1() {    
  105.         StudentEntity entity = new StudentEntity();    
  106.         entity.setStudentName(null);    
  107.         entity.setStudentSex(1);    
  108.         List<StudentEntity> list = this.dynamicSqlMapper.getStudentList_if(entity);    
  109.         for (StudentEntity e : list) {    
  110.             System.out.println(e.toString());    
  111.         }    
  112.     }  </pre>如果上面例子,参数studentName为null,将不会进行STUDENT_NAME列的判断,则会直接导“WHERE AND”关键字多余的错误SQL。<br>  
  113. 这时我们可以使用where动态语句来解决。这个“where”标签会知道如果它包含的标签中有返回值的话,它就插入一个‘where’。此外,如果标签返回的内容是以AND 或OR 开头的,则它会剔除掉。<br>  
  114. 上面例子修改为:<pre name="code" class="html"><!-- 3 select - where/if(判断参数) - 将实体类不为空的属性作为where条件 -->    
  115.     <select id="getStudentList_whereIf" resultMap="resultMap_studentEntity" parameterType="liming.student.manager.data.model.StudentEntity">    
  116.         SELECT ST.STUDENT_ID,    
  117.                ST.STUDENT_NAME,    
  118.                ST.STUDENT_SEX,    
  119.                ST.STUDENT_BIRTHDAY,    
  120.                ST.STUDENT_PHOTO,    
  121.                ST.CLASS_ID,    
  122.                ST.PLACE_ID    
  123.           FROM STUDENT_TBL ST     
  124.         <where>    
  125.             <if test="studentName !=null ">    
  126.                 ST.STUDENT_NAME LIKE CONCAT(CONCAT('%', #{studentName, jdbcType=VARCHAR}),'%')    
  127.             </if>    
  128.             <if test="studentSex != null and studentSex != '' ">    
  129.                 AND ST.STUDENT_SEX = #{studentSex, jdbcType=INTEGER}    
  130.             </if>    
  131.             <if test="studentBirthday != null ">    
  132.                 AND ST.STUDENT_BIRTHDAY = #{studentBirthday, jdbcType=DATE}    
  133.             </if>    
  134.             <if test="classId != null and classId!= '' ">    
  135.                 AND ST.CLASS_ID = #{classId, jdbcType=VARCHAR}    
  136.             </if>    
  137.             <if test="classEntity != null and classEntity.classId !=null and classEntity.classId !=' ' ">    
  138.                 AND ST.CLASS_ID = #{classEntity.classId, jdbcType=VARCHAR}    
  139.             </if>    
  140.             <if test="placeId != null and placeId != '' ">    
  141.                 AND ST.PLACE_ID = #{placeId, jdbcType=VARCHAR}    
  142.             </if>    
  143.             <if test="placeEntity != null and placeEntity.placeId != null and placeEntity.placeId != '' ">    
  144.                 AND ST.PLACE_ID = #{placeEntity.placeId, jdbcType=VARCHAR}    
  145.             </if>    
  146.             <if test="studentId != null and studentId != '' ">    
  147.                 AND ST.STUDENT_ID = #{studentId, jdbcType=VARCHAR}    
  148.             </if>    
  149.         </where>      
  150.     </select>  </pre><strong>3.4 if + set 的更新语句</strong><br>  
  151. 当update语句中没有使用if标签时,如果有一个参数为null,都会导致错误。<br>  
  152. 当在update语句中使用if标签时,如果前面的if没有执行,则或导致逗号多余错误。使用set标签可以将动态的配置SET 关键字,和剔除追加到条件末尾的任何不相关的逗号。<br>  
  153. 使用if+set标签修改后,如果某项为null则不进行更新,而是保持数据库原值。如下示例:<pre name="code" class="html"><!-- 4 if/set(判断参数) - 将实体类不为空的属性更新 -->    
  154.     <update id="updateStudent_if_set" parameterType="liming.student.manager.data.model.StudentEntity">    
  155.         UPDATE STUDENT_TBL    
  156.         <set>    
  157.             <if test="studentName != null and studentName != '' ">    
  158.                 STUDENT_TBL.STUDENT_NAME = #{studentName},    
  159.             </if>    
  160.             <if test="studentSex != null and studentSex != '' ">    
  161.                 STUDENT_TBL.STUDENT_SEX = #{studentSex},    
  162.             </if>    
  163.             <if test="studentBirthday != null ">    
  164.                 STUDENT_TBL.STUDENT_BIRTHDAY = #{studentBirthday},    
  165.             </if>    
  166.             <if test="studentPhoto != null ">    
  167.                 STUDENT_TBL.STUDENT_PHOTO = #{studentPhoto, javaType=byte[], jdbcType=BLOBtypeHandler=org.apache.ibatis.type.BlobTypeHandler},    
  168.             </if>    
  169.             <if test="classId != '' ">    
  170.                 STUDENT_TBL.CLASS_ID = #{classId}    
  171.             </if>    
  172.             <if test="placeId != '' ">    
  173.                 STUDENT_TBL.PLACE_ID = #{placeId}    
  174.             </if>    
  175.         </set>    
  176.         WHERE STUDENT_TBL.STUDENT_ID = #{studentId};        
  177.     </update>  </pre><strong>3.5 if + trim代替where/set标签</strong><br>  
  178.        trim是更灵活的去处多余关键字的标签,他可以实践where和set的效果。<br>  
  179. <strong>3.5.1trim代替where</strong><br>  
  180. <pre name="code" class="html"><!-- 5.1 if/trim代替where(判断参数) - 将实体类不为空的属性作为where条件 -->    
  181.     <select id="getStudentList_if_trim" resultMap="resultMap_studentEntity">    
  182.         SELECT ST.STUDENT_ID,    
  183.                ST.STUDENT_NAME,    
  184.                ST.STUDENT_SEX,    
  185.                ST.STUDENT_BIRTHDAY,    
  186.                ST.STUDENT_PHOTO,    
  187.                ST.CLASS_ID,    
  188.                ST.PLACE_ID    
  189.           FROM STUDENT_TBL ST     
  190.         <trim prefix="WHERE" prefixOverrides="AND|OR">    
  191.             <if test="studentName !=null ">    
  192.                 ST.STUDENT_NAME LIKE CONCAT(CONCAT('%', #{studentName, jdbcType=VARCHAR}),'%')    
  193.             </if>    
  194.             <if test="studentSex != null and studentSex != '' ">    
  195.                 AND ST.STUDENT_SEX = #{studentSex, jdbcType=INTEGER}    
  196.             </if>    
  197.             <if test="studentBirthday != null ">    
  198.                 AND ST.STUDENT_BIRTHDAY = #{studentBirthday, jdbcType=DATE}    
  199.             </if>    
  200.             <if test="classId != null and classId!= '' ">    
  201.                 AND ST.CLASS_ID = #{classId, jdbcType=VARCHAR}    
  202.             </if>    
  203.             <if test="classEntity != null and classEntity.classId !=null and classEntity.classId !=' ' ">    
  204.                 AND ST.CLASS_ID = #{classEntity.classId, jdbcType=VARCHAR}    
  205.             </if>    
  206.             <if test="placeId != null and placeId != '' ">    
  207.                 AND ST.PLACE_ID = #{placeId, jdbcType=VARCHAR}    
  208.             </if>    
  209.             <if test="placeEntity != null and placeEntity.placeId != null and placeEntity.placeId != '' ">    
  210.                 AND ST.PLACE_ID = #{placeEntity.placeId, jdbcType=VARCHAR}    
  211.             </if>    
  212.             <if test="studentId != null and studentId != '' ">    
  213.                 AND ST.STUDENT_ID = #{studentId, jdbcType=VARCHAR}    
  214.             </if>    
  215.         </trim>       
  216.     </select>  </pre><strong>3.5.2 trim代替set</strong><br>  
  217. <pre name="code" class="html">    <!-- 5.2 if/trim代替set(判断参数) - 将实体类不为空的属性更新 -->    
  218.     <update id="updateStudent_if_trim" parameterType="liming.student.manager.data.model.StudentEntity">    
  219.         UPDATE STUDENT_TBL    
  220.         <trim prefix="SET" suffixOverrides=",">    
  221.             <if test="studentName != null and studentName != '' ">    
  222.                 STUDENT_TBL.STUDENT_NAME = #{studentName},    
  223.             </if>    
  224.             <if test="studentSex != null and studentSex != '' ">    
  225.                 STUDENT_TBL.STUDENT_SEX = #{studentSex},    
  226.             </if>    
  227.             <if test="studentBirthday != null ">    
  228.                 STUDENT_TBL.STUDENT_BIRTHDAY = #{studentBirthday},    
  229.             </if>    
  230.             <if test="studentPhoto != null ">    
  231.                 STUDENT_TBL.STUDENT_PHOTO = #{studentPhoto, javaType=byte[], jdbcType=BLOBtypeHandler=org.apache.ibatis.type.BlobTypeHandler},    
  232.             </if>    
  233.             <if test="classId != '' ">    
  234.                 STUDENT_TBL.CLASS_ID = #{classId},    
  235.             </if>    
  236.             <if test="placeId != '' ">    
  237.                 STUDENT_TBL.PLACE_ID = #{placeId}    
  238.             </if>    
  239.         </trim>    
  240.         WHERE STUDENT_TBL.STUDENT_ID = #{studentId}    
  241.     </update>  </pre>  
  242. <p><strong>3.6 choose (when, otherwise)  </strong><br>  
  243. </p>  
  244. <p>有时候我们并不想应用所有的条件,而只是想从多个选项中选择一个。而使用if标签时,只要test中的表达式为true,就会执行if标签中的条件。MyBatis提供了choose 元素。if标签是与(and)的关系,而choose比傲天是或(or)的关系。  choose标签是按顺序判断其内部when标签中的test条件出否成立,如果有一个成立,则choose结束。当choose中所有when的条件都不满则时,则执行otherwise中的sql。类似于Java 的switch 语句,choose为switch,when为case,otherwise则为default。</p>  
  245. 例如下面例子,同样把所有可以限制的条件都写上,方面使用。choose会从上到下选择一个when标签的test为true的sql执行。安全考虑,我们使用where将choose包起来,放置关键字多于错误。<pre name="code" class="html"><!-- 6 choose(判断参数) - 按顺序将实体类第一个不为空的属性作为where条件 -->    
  246.     <select id="getStudentList_choose" resultMap="resultMap_studentEntity" parameterType="liming.student.manager.data.model.StudentEntity">    
  247.         SELECT ST.STUDENT_ID,    
  248.                ST.STUDENT_NAME,    
  249.                ST.STUDENT_SEX,    
  250.                ST.STUDENT_BIRTHDAY,    
  251.                ST.STUDENT_PHOTO,    
  252.                ST.CLASS_ID,    
  253.                ST.PLACE_ID    
  254.           FROM STUDENT_TBL ST     
  255.         <where>    
  256.             <choose>    
  257.                 <when test="studentName !=null ">    
  258.                     ST.STUDENT_NAME LIKE CONCAT(CONCAT('%', #{studentName, jdbcType=VARCHAR}),'%')    
  259.                 </when >    
  260.                 <when test="studentSex != null and studentSex != '' ">    
  261.                     AND ST.STUDENT_SEX = #{studentSex, jdbcType=INTEGER}    
  262.                 </when >    
  263.                 <when test="studentBirthday != null ">    
  264.                     AND ST.STUDENT_BIRTHDAY = #{studentBirthday, jdbcType=DATE}    
  265.                 </when >    
  266.                 <when test="classId != null and classId!= '' ">    
  267.                     AND ST.CLASS_ID = #{classId, jdbcType=VARCHAR}    
  268.                 </when >    
  269.                 <when test="classEntity != null and classEntity.classId !=null and classEntity.classId !=' ' ">    
  270.                     AND ST.CLASS_ID = #{classEntity.classId, jdbcType=VARCHAR}    
  271.                 </when >    
  272.                 <when test="placeId != null and placeId != '' ">    
  273.                     AND ST.PLACE_ID = #{placeId, jdbcType=VARCHAR}    
  274.                 </when >    
  275.                 <when test="placeEntity != null and placeEntity.placeId != null and placeEntity.placeId != '' ">    
  276.                     AND ST.PLACE_ID = #{placeEntity.placeId, jdbcType=VARCHAR}    
  277.                 </when >    
  278.                 <when test="studentId != null and studentId != '' ">    
  279.                     AND ST.STUDENT_ID = #{studentId, jdbcType=VARCHAR}    
  280.                 </when >    
  281.                 <otherwise>    
  282.                 </otherwise>    
  283.             </choose>    
  284.         </where>      
  285.     </select>  </pre><strong>3.7 foreach</strong><br>  
  286. 对于动态SQL 非常必须的,主是要迭代一个集合,通常是用于IN 条件。List 实例将使用“list”做为键,数组实例以“array” 做为键。<br>  
  287. foreach元素是非常强大的,它允许你指定一个集合,声明集合项和索引变量,它们可以用在元素体内。它也允许你指定开放和关闭的字符串,在迭代之间放置分隔符。这个元素是很智能的,它不会偶然地附加多余的分隔符。<br>  
  288. 注意:你可以传递一个List实例或者数组作为参数对象传给MyBatis。当你这么做的时候,MyBatis会自动将它包装在一个Map中,用名称在作为键。List实例将会以“list”作为键,而数组实例将会以“array”作为键。<br>  
  289. 这个部分是对关于XML配置文件和XML映射文件的而讨论的。下一部分将详细讨论Java API,所以你可以得到你已经创建的最有效的映射。<br>  
  290. 3.7.1参数为array示例的写法<br>  
  291. <pre name="code" class="html">接口的方法声明:  
  292.     public List<StudentEntity> getStudentListByClassIds_foreach_array(String[] classIds);    
  293. 动态SQL语句:  
  294.     <!— 7.1 foreach(循环array参数) - 作为where中in的条件 -->    
  295.     <select id="getStudentListByClassIds_foreach_array" resultMap="resultMap_studentEntity">    
  296.         SELECT ST.STUDENT_ID,    
  297.                ST.STUDENT_NAME,    
  298.                ST.STUDENT_SEX,    
  299.                ST.STUDENT_BIRTHDAY,    
  300.                ST.STUDENT_PHOTO,    
  301.                ST.CLASS_ID,    
  302.                ST.PLACE_ID    
  303.           FROM STUDENT_TBL ST    
  304.           WHERE ST.CLASS_ID IN     
  305.          <foreach collection="array" item="classIds"  open="(" separator="," close=")">    
  306.             #{classIds}    
  307.          </foreach>    
  308.     </select>  </pre>测试代码,查询学生中,在20000001、20000002这两个班级的学生:<br>  
  309. <pre name="code" class="html">接口的方法声明:  
  310.     public List<StudentEntity> getStudentListByClassIds_foreach_array(String[] classIds);    
  311. 动态SQL语句:  
  312.     <!— 7.1 foreach(循环array参数) - 作为where中in的条件 -->    
  313.     <select id="getStudentListByClassIds_foreach_array" resultMap="resultMap_studentEntity">    
  314.         SELECT ST.STUDENT_ID,    
  315.                ST.STUDENT_NAME,    
  316.                ST.STUDENT_SEX,    
  317.                ST.STUDENT_BIRTHDAY,    
  318.                ST.STUDENT_PHOTO,    
  319.                ST.CLASS_ID,    
  320.                ST.PLACE_ID    
  321.           FROM STUDENT_TBL ST    
  322.           WHERE ST.CLASS_ID IN     
  323.          <foreach collection="array" item="classIds"  open="(" separator="," close=")">    
  324.             #{classIds}    
  325.          </foreach>    
  326.     </select>  </pre><strong>3.7.2参数为list示例的写法</strong><br>  
  327. 接口的方法声明:<br>  
  328.     public List<StudentEntity> getStudentListByClassIds_foreach_list(List<String> classIdList);  <br>  
  329. 动态SQL语句:<br>  
  330. <pre name="code" class="html">    <!-- 7.2 foreach(循环List<String>参数) - 作为where中in的条件 -->    
  331.     <select id="getStudentListByClassIds_foreach_list" resultMap="resultMap_studentEntity">    
  332.         SELECT ST.STUDENT_ID,    
  333.                ST.STUDENT_NAME,    
  334.                ST.STUDENT_SEX,    
  335.                ST.STUDENT_BIRTHDAY,    
  336.                ST.STUDENT_PHOTO,    
  337.                ST.CLASS_ID,    
  338.                ST.PLACE_ID    
  339.           FROM STUDENT_TBL ST    
  340.           WHERE ST.CLASS_ID IN     
  341.          <foreach collection="list" item="classIdList"  open="(" separator="," close=")">    
  342.             #{classIdList}    
  343.          </foreach>    
  344.     </select>  </pre>测试代码,查询学生中,在20000001、20000002这两个班级的学生:<pre name="code" class="html">    @Test    
  345.     public void test7_2_foreach() {    
  346.         ArrayList<String> classIdList = new ArrayList<String>();    
  347.         classIdList.add("20000001");    
  348.         classIdList.add("20000002");    
  349.         List<StudentEntity> list = this.dynamicSqlMapper.getStudentListByClassIds_foreach_list(classIdList);    
  350.         for (StudentEntity e : list) {    
  351.             System.out.println(e.toString());    
  352.         }    
  353.     }</pre><br>  
  354. 转载 http://limingnihao.iteye.com/blog/782190<br>  
本站文章内容,部分来自于互联网,若侵犯了您的权益,请致邮件chuanghui423#sohu.com(请将#换为@)联系,我们会尽快核实后删除。
Copyright © 2006-2023 DBMNG.COM All Rights Reserved. Powered by DEVSOARTECH            豫ICP备11002312号-2

豫公网安备 41010502002439号