mybatis mapper.xml中如何根據數據庫類型選擇對應SQL語句
mapper.xml根據數據庫類型選擇對應SQL語句
1、spring-database.xml文件中配置
<bean id="vendorProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean"> <property name="properties"> <props> <prop key="DB2">db2</prop> <prop key="Oracle">oracle</prop> <prop key="MySQL">mysql</prop> </props> </property> </bean> <bean id="databaseIdProvider" class="org.apache.ibatis.mapping.VendorDatabaseIdProvider"> <property name="properties" ref="vendorProperties"/> </bean>
對於sessionFactory的配置,主要是標紅的語句一定要有,其它按照自己原有的配置走。
<!-- sessionFactory 將spring和mybatis整合 --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource" /> <property name="databaseIdProvider" ref="databaseIdProvider" /> <property name="configLocation" value="classpath:mybatis-config.xml" /> <property name="mapperLocations" value="classpath*:/com/sunyard/cop/IF/mybatis/mapping/*.xml" /> <property name="plugins"> <array> <bean class="com.github.pagehelper.PageInterceptor"> <property name="properties"> <!--使用下面的方式配置參數,一行配置一個,後面會有所有的參數介紹 --> <value> helperDialect=oracle reasonable=true supportMethodsArguments=true params=count=countSql autoRuntimeDialect=true </value> </property> </bean> </array> </property> </bean>
2、mapper.xml文件中配置
<select id="selectByUserNo" databaseId="mysql" parameterType="java.lang.String" resultMap="UserResultMap"> select * from SM_USERS_TB </select> <select id="selectByUserNo" parameterType="java.lang.String" resultMap="UserResultMap"> select * from SM_USERS_TB </select>
若寫上databaseId = "mysql",則在數據源為mysql類型時,自動執行該SQL語句,若不寫databaseId ,且同時存在相同ID的SQL語句,則隻要是非mysql數據庫的數據源,都會調用該條SQL語句。
mapper.xml動態SQL語句用法
用於實現動態SQL的元素主要有
if
用於判斷 示例
<update id="upda" parameterType="User"> update smbms_user <set> <!--修改時可以判斷userCode是否是空的如果不為空就把數據庫中這一列的值更改掉 如果為空就不修改這一列數據庫這一列的值也不會為Null--> <if test="userCode!=null and userCode!=''"> userCode=#{userCode}, </if> <if test="userName!=null and userName!=''"> userName=#{userName}, </if> <if test="userPassword!=null and userPassword!=''"> userPassword=#{userPassword}, </if> <if test="gender!=null and gender!=''"> gender=#{gender}, </if> <if test="phone!=null and phone!=''"> phone=#{phone}, </if> <if test="address!=null and address!=''"> address=#{address}, </if> <if test="userRole!=null and userRole!=''"> userRole=#{userRole}, </if> <if test="createdBy!=null and createdBy!=''"> createdBy=#{createdBy}, </if> </set> where id=#{id} </update>
trim
trim
屬性 prefix suffix prefixOverrides suffixOverrides 更靈活地去除多餘關鍵字 替代where和setif+trim
使用if+trim替代if+set進行更新用戶表數據,效果一樣的 如下:
<update id ="modify" parameterType="User"> update smbms_user <trim prefix="set" suffixOverrides="," suffix="where id = #{id}"> <if test="userCode != null">userCode = #{userCode},</if> <if test="userName!= null">userCode = #{userName },</if> <if test="userPassword!= null">userPassword=#{userPassword },</if> </trim> </update>
其中:
prefix
表示有一個if成立則插入where語句suffix
表示後綴,插入到最後,與perfix正好相反suffixOverrides="xxx"
表示如果最後生成的sql語句多一個xxx,則自動去掉prefixOverrides
的意思是去掉前綴,和suffixOverrides的使用正好相反
這裡如果任意一個<if>條件為true,<trim>元素會插入WHERE,並且移除緊跟where後面的(and或or)
where
SELECT u.*,r.roleName,r.roleCode FROM smbms_user u INNER JOIN smbms_role r ON u.userrole=r.id <where> <!-- where相當於 select * from pet where id=1 中的where一樣 --> <if test="usercode !=null and usercode !=''"> AND userCode LIKE CONCAT('%',#{usercode},'%') </if> <if test="userrole!=0"> AND userRole=#{userrole} </if> <if test="gender!=null and gender!=0"> AND gender=#{gender} </if> </where>
set
<update id="upda" parameterType="User"> update smbms_user <set><!-- 與修改時搭配使用我們修改set的sql語句的‘,'的最後一列會被自動省略 --> <if test="userCode!=null and userCode!=''"> userCode=#{userCode}, </if> <if test="userName!=null and userName!=''"> userName=#{userName}, </if> <if test="userPassword!=null and userPassword!=''"> userPassword=#{userPassword}, </if> <if test="gender!=null and gender!=''"> gender=#{gender}, </if> <if test="phone!=null and phone!=''"> phone=#{phone}, </if> <if test="address!=null and address!=''"> address=#{address}, </if> <if test="userRole!=null and userRole!=''"> userRole=#{userRole}, </if> <if test="createdBy!=null and createdBy!=''"> createdBy=#{createdBy}, </if> </set> where id=#{id} </update>
choose(when、otherwise)
相當於Java中switch語句 當when有條件滿足的時候,就跳出choose
<choose> <when test ="條件1"> …</when> <when test ="條件2"> …</when> <when test ="條件3"> …</when> … <otherwise>…</otherwise> </choose>
foreach
迭代一個集合,通常用於in條件 屬性 item index collection:必須指定 list array map-key open separator close
<select id="getUserName" resultType="User" parameterType="java.util.List"> select * from smbms_user where userCode in <foreach collection="list" open="(" close=")" item="userCode" separator=","> #{userCode} </foreach> </select>
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- 一篇文章帶你瞭解mybatis的動態SQL
- mybatis中mapper.xml文件的常用屬性及標簽講解
- MyBatis XML去除多餘AND|OR前綴或逗號等後綴的操作
- Mybatis中xml的動態sql實現示例
- Mybatis如何自動生成sql語句