test5

二、ibatis3.x

5.ibatis3.x比ibatis2.x使用更简单,语法有的类似JSP中的JSTL语法

<select id="dynamicGetAccountList" parameterType="Account" resultType="Account">
select  id,
firstName,
lastName, 
emailAddress from 表名

<where>
   <if test="emailAddress >= 0">ACC_EMAIL = #{emailAddress}</if>
   <if test="idList != null">
      or ACC_ID IN
     <foreach item="id" index="index" open="(" close=")" separator="," collection="idList">
        #{idList[${index}]}
    </foreach>
   </if>
</where>
</select>

test="emailAddress != null" 添加了OGNL的解释支持,可以动态支持更多的判断,这将不限于原2.x中提供的判断逻辑,更不需要为每个判断条件加个标签进行配置.

你可能感兴趣的:(jsp)