溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

mybatis中if標(biāo)簽怎么用

發(fā)布時(shí)間:2021-09-23 14:25:19 來(lái)源:億速云 閱讀:198 作者:小新 欄目:編程語(yǔ)言

這篇文章主要介紹了mybatis中if標(biāo)簽怎么用,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

在項(xiàng)目開(kāi)發(fā)中,mybatis <if> 標(biāo)簽使用廣泛,本文講解if標(biāo)簽的兩種使用方式

其一、使用 <if> 標(biāo)簽判斷某一字段是否為空

其二、使用 <if> 標(biāo)簽判斷傳入?yún)?shù)是否相等

具體代碼如下

數(shù)據(jù)庫(kù)表結(jié)構(gòu)和數(shù)據(jù)

實(shí)體類(lèi)

package com.demo.bean; public class Commodity {private String name;private String date; public String getName() {return name;} public void setName(String name) {this.name = name;} public String getDate() {return date;} public void setDate(String date) {this.date = date;} @Overridepublic String toString() {return "Com [name=" + name + ", date=" + date + "]";}}

mapper層

package com.demo.mapper; import java.util.List;import org.apache.ibatis.annotations.Mapper;import org.apache.ibatis.annotations.Param;import com.demo.bean.Commodity;@Mapperpublic interface CommodityMapper { List<Commodity> getListByDate(Commodity commodity);List<Commodity> getListByStartDateAndEndDate(@Param("startDate")String startDate, @Param("endDate")String endDate);}

mapper.xml文件

<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" ><mapper namespace="com.demo.mapper.CommodityMapper"><resultMap id="BaseResultMap" type="com.demo.bean.Commodity"><id column="name" property="name" jdbcType="VARCHAR" /><result column="date" property="date" jdbcType="VARCHAR" /></resultMap><select id="getListByDate" resultMap="BaseResultMap"> select * from commodity where 1 = 1 <if test="date != null and date != ''"> and date = #{date} </if> </select><select id="getListByStartDateAndEndDate" resultMap="BaseResultMap"> select * from commodity where 1 = 1 <if test="#{startDate}.toString() != #{endDate}.toString()"> and date between #{startDate} and #{endDate} </if></select></mapper>

注意:mybatis 等值判斷的 tostring()方法 (上邊代碼中第二個(gè)select中的toString()方法)

controller層

package com.demo.controller; import java.util.HashMap;import java.util.Map;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.ResponseBody;import org.springframework.web.bind.annotation.RestController;import com.demo.bean.Commodity;import com.demo.mapper.CommodityMapper; @RestControllerpublic class DemoController { @Autowiredprivate CommodityMapper comMapper;@RequestMapping(value = "/commodity")public Object commodity() {Map<String, Object> map = new HashMap<String, Object>();Commodity com =new Commodity();com.setDate("2018-10-12");map.put("res", comMapper.getListByDate(com));return map;}@RequestMapping(value = "/between")public Object commodityBetween() {Map<String, Object> map = new HashMap<String, Object>();map.put("res", comMapper.getListByStartDateAndEndDate("2018-10-09", "2018-10-13"));return map;}}

測(cè)試

1、訪問(wèn) http://localhost:9000/commodity

2、訪問(wèn) http://localhost:9000/between

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“mybatis中if標(biāo)簽怎么用”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI