Mybatis,模糊查询语句,以及传参数的正确写法

Posted 梓★鸿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis,模糊查询语句,以及传参数的正确写法相关的知识,希望对你有一定的参考价值。

不多说直接上代码!

 

 

 

 

接口:



public interface CommodityMapper {
int deleteByPrimaryKey(Integer productId);

int insert(Commodity record);

Commodity selectByPrimaryKey(Integer productId);

List<Commodity> selectAll();

List<Commodity> getType(int id);

int updateByPrimaryKey(Commodity record);

int getCount();

List<Commodity> SearchCommodity(@Param("productName") String productName);//注意传参的名字必须要和Mapper文件一致

}
 

 

 

Constroller层:

 //搜索
    @RequestMapping(path = "/search", method = RequestMethod.GET)
    public ResponseEntity Search(String productName) {
        if (commodityService.SearchCommodity(productName).size() != 0) {
            return ResponseEntity.ok(commodityService.SearchCommodity(productName));
        } else {
            return ResponseEntity.ok("error");
        }

    }

 

 

 

Mapper文件

    <select id="SearchCommodity"  resultType="string" resultMap="BaseResultMap">
select
c.product_id,
c.product_name,
c.product_content,
s.product_specs,
s.product_price,
d.product_simg
from commodity  c
cross join Standard  s
on c.product_id=s.product_id
cross join dommodityAttribute d
on  c.product_id=d.product_id
where c.product_name like concat(‘%‘,#{productName},‘%‘)  group by c.product_id
    </select>

 



















以上是关于Mybatis,模糊查询语句,以及传参数的正确写法的主要内容,如果未能解决你的问题,请参考以下文章

使用MyBatis进行模糊查询时%到底写哪儿的解决办法

mybatis模糊查询sql

全套学习!mysql模糊查询语句

mybatis模糊查询不同写法

Mybatis的模糊查询以及自动映射

Mybatis的模糊查询以及自动映射