数据库
首页 > 数据库> > Mybatis Plus ${ew.sqlSegment} 与 ${ew.customSqlSegment}的使用区别

Mybatis Plus ${ew.sqlSegment} 与 ${ew.customSqlSegment}的使用区别

作者:互联网

<where>
    ${ew.sqlSegment}
</where>
而使用${ew.customSqlSegment} 则省略 <where></where>

觉得不对的可以去下面的官网看

条件构造器 | MyBatis-Plus为简化开发而生https://mp.baomidou.com/guide/wrapper.html#%E4%BD%BF%E7%94%A8-wrapper-%E8%87%AA%E5%AE%9A%E4%B9%89sql官网我不知道不是是有错我用的时候是这样的 

List<MysqlData> getAll(@Param(Constants.WRAPPER) Wrapper wrapper);


<select id="getAll" resultType="MysqlData">
	SELECT * FROM mysql_data ${ew.customSqlSegment}
</select>

但是官网xml不需要@Param直接后面用ew,但是我试过之后反而是用注解的方法加xml的

标签:xml,sqlSegment,Param,customSqlSegment,wrapper,ew,官网
来源: https://blog.csdn.net/weixin_55585048/article/details/121785597