91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Mybatis Plus使用條件構造器增刪改查功能的示例分析

發布時間:2021-05-12 11:43:33 來源:億速云 閱讀:213 作者:小新 欄目:開發技術

這篇文章主要介紹Mybatis Plus使用條件構造器增刪改查功能的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

java后端層級結構


Controller 接口層

接口層比較好理解,它是面向web網絡的接口,使用http格式去調用

/**
 * 圖文課程管理Controller
 */
@RestController
@RequestMapping("/driver/imageCourse")
public class TImageCourseController extends BaseController {
    
    @Autowired
    private ITImageCourseService tImageCourseService;
    @Autowired
    private TImageCourseMapper tImageCourseMapper;
    
    // 具體接口...
}

Service 業務層

在實際應用中,更復雜的邏輯應該寫在 Service 業務層方法中,在業務方法中再調用數據層方法,實現從 接口層-業務層-數據層 的鏈路調用關系,提高代碼的可讀性

/**
 * 圖文課程管理Service接口
 */
public interface ITImageCourseService extends IService<TImageCourse> {
}

業務層實現

/**
 * 圖文課程管理Service業務層處理
 */
@Service
public class TImageCourseServiceImpl extends ServiceImpl<TImageCourseMapper, TImageCourse> implements ITImageCourseService {
    @Autowired
    private TImageCourseMapper tImageCourseMapper;

}

ServiceImpl 類實現了 IService 接口中的方法;ServiceImpl 中的方法,本質上是對 BaseMapper 方法的封裝,同時也增加了一些 BaseMapper 類中沒有的特性,例如常用的 list()count() 方法

// Service方法調用了Mapper方法 只是將insert()返回轉換成了布爾值
@Override
public boolean save(T entity) {
    return retBool(baseMapper.insert(entity));
}

Mapper 數據層

繼承 BaseMapper 接口后,無需編寫 mapper.xml 文件,即可獲得CRUD功能;例如,insert()deleteById()updateById()selectById() 等方法

如果手動編寫數據層的sql,BaseMapper實現者即對應xml中的sql方法

/**
 * 圖文課程管理Mapper接口
 */
public interface TImageCourseMapper extends BaseMapper<TImageCourse> {
}

**mapper.xml **

xml內容例子,該例子自定義了一個根據id的查詢方法,無視了刪除標志

<?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.ruoyi.mapper.TRuralInfoMapper">

    <resultMap type="TRuralInfo" id="RuralInfoResult">
        <id     property="id"             column="id"           />
        <result property="cityName"       column="city_name"    />
        <result property="countyName"     column="county_name"  />
        <result property="townName"       column="town_name"    />
        <result property="villageName"    column="village_name" />
        <result property="checkCode"      column="check_code"   />
        <result property="parentLevel"    column="parent_level" />
        <result property="parentId"       column="parent_id"    />
        <result property="delFlag"        column="del_flag"     />
        <result property="createBy"       column="create_by"    />
        <result property="createTime"     column="create_time"  />
        <result property="updateBy"       column="update_by"    />
        <result property="updateTime"     column="update_time"  />
    </resultMap>

    <sql id="selectRuralInfoVo">
        select t_rural_info.id, city_name, county_name, town_name, village_name, check_code, parent_level, parent_id,
        t_rural_info.del_flag, t_rural_info.create_by, t_rural_info.create_time, t_rural_info.update_by, t_rural_info.update_time
        from t_rural_info
    </sql>

    <select id="getRuralInfoById" parameterType="Long" resultMap="RuralInfoResult">
        <include refid="selectRuralInfoVo"/>
        where id = #{id}
    </select>
</mapper>

增刪改查


新增(C)

使用 mapper 對象的 insert() 方法新增一條記錄,成果后會將數據庫的id返回給實體

/**
 * 新增圖文課程管理
 */
@PostMapping
public AjaxResult add(@RequestBody TImageCourse tImageCourse)
{    
    ...
    return toAjax(tImageCourseMapper.insert(tImageCourse));
}

saveBatch

service 類中提供了 saveBatch() 方法,可實現批量插入,該方法是支持事務

saveOrUpdate

service 類中提供了 saveOrUpdate() 方法,如果id為空則調用 save() 方法保存,反之則調用 updateById() 方法更新

查詢(R)

查詢多數要借助條件構造器使用才有意義,實現更靈活的查詢;

查詢實體

常用的方法有 .getOne()getById() ;

.getOne() 接收一個條件構造器作為參數

getById() 根據id進行查詢實體

查詢集合

常用的查詢方法包括 .list()

.list() 方法也可以接收一個條件構造器作為參數

構造器的使用

條件構造器包含 QueryWrapperLambdaQueryWrapper 兩個類。

LambdaQueryWrapper 為函數式編程的書寫習慣,與 QueryWrapper 表達的意義相同,優點是簡化了代碼。

此處以 LambdaQueryWrapper 的使用為例,常用的三種方法:

// 1、直接用new創建
// 創建對象的方式會更加靈活,可配合 if()...else 達到更靈活的sql拼接
LambdaQueryWrapper<TCenterPoint> wrapper = new LambdaQueryWrapper<>();
wrapper.eq(TCenterPoint::getPoint, 10.0);

// 2、靜態方法創建 Wrappers.<>lambdaQuery()
// 構造器方法多為鏈式編程 可連寫
Wrappers.<TCenterPoint>lambdaQuery().eq(TCenterPoint::getPoint, 10.0)

// 3、靜態方法創建 Wrappers.query() 
// query可接受對象 字段不為null則自動拼接.eq()方法
Wrappers.query(tUserDetail)

構造器方法


/**
 * 源碼
 * @param condition 執行條件 可省略
 * @param column    字段
 * @param val       值
 */
eq(boolean condition, R column, Object val)
eq相等=
ne不等于!=
gt大于>
ge大于等于>=
lt小于<
le小于等于<=
betweenBETWEEN 值1 AND 值2
likeLIKE ‘%值%'
notLikeNOT LIKE ‘%值%'
likeLeftLIKE ‘%值' ;likeRight同理
isNull字段 IS NULL;
orderByAsc排序:ORDER BY 字段, … ASC;orderByDesc同理

在sql中使用and和or,邏輯只需寫在where中即可,在ORM框架中較為不好理解,總之,其結果是實現一個查詢條件和多個條件并列的關系

OR

or(Consumer<Param> consumer)
or(boolean condition, Consumer<Param> consumer)

OR 嵌套,例如

// or (name = '李白' and status <> '活著')
or(i -> i.eq("name", "李白").ne("status", "活著"))

AND

and(Consumer<Param> consumer)
and(boolean condition, Consumer<Param> consumer)

AND 嵌套,例如

// and (name = '李白' and status <> '活著')
and(i -> i.eq("name", "李白").ne("status", "活著"))

修改(U)

使用 mapper 對象的 updateById() 方法更新實體,只有字段內容不為空,才會觸發字段內容的修改

/**
 * 修改圖文課程管理
 */
@PutMapping
public AjaxResult edit(@RequestBody TImageCourse tImageCourse)
{
    return toAjax(tImageCourseMapper.updateById(tImageCourse));
}

刪除(D)

刪除常用的方法是根據id進行刪除,使用 mapper 對象的 deleteById ,框架也支持批量刪除的操作 deleteBatchIds

/**
 * 刪除圖文課程管理
 */
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids) {
    return toAjax(tImageCourseMapper.deleteBatchIds(Arrays.asList(ids)));
}

以上是“Mybatis Plus使用條件構造器增刪改查功能的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

棋牌| 离岛区| 承德县| 云安县| 礼泉县| 吐鲁番市| 左云县| 景东| 龙州县| 西乌| 宜昌市| 专栏| 桂阳县| 泾源县| 建宁县| 宁明县| 华坪县| 镇原县| 景宁| 都安| 白水县| 梁河县| 勐海县| 元朗区| 潮安县| 临武县| 寻乌县| 诏安县| 万全县| 南木林县| 永仁县| 耒阳市| 温州市| 东城区| 贺兰县| 仙桃市| 杭州市| 天峻县| 乐昌市| 龙陵县| 绍兴市|