bootstrap react https://segmentfault.com/a/1190000010383464
xml 中 < 转义 to thi tha
<if test="pricehigh!=null">
and price < #{pricehigh,jdbcType=INTEGER}
</if>
MyBatis动态SQL之一使用 if 标签和 choose标签
-
<select id="getItems" parameterType="com.ipro.shopping.to.IntegerEntity" resultType="itemsType">
-
select * from itemsType
-
<where>
-
<!--方式一使用choose的方式查询-->
-
<!-- <choose>
-
<when test="parentId !=0 ">parentTypeId=#{parentId}</when>
-
<when test="parentId==0">parentTypeId is null</when>
-
</choose> -->
-
<!--方式二使用if的方式查询-->
-
<if test="parentId!=0">
-
parentTypeId=#{parentId}
-
</if>
-
<if test="parentId==0">
-
parentTypeId is null
-
</if>
-
</where>
-
</select>