SpringBoot-JPA自定义SQL(分页)语句

package com.example.clothingmanager.dao;

import com.example.clothingmanager.bean.Clothes;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;

import java.util.List;

/**
 * @author Huangyt
 * @version 1.0
 * @date 2020/5/7 16:45
 */
public interface ClothesDao extends JpaRepository<Clothes, String> {
	//第一种写法
    @Query(value = "select * from tb_clothes where cname like CONCAT('%', :keyword, '%')", nativeQuery = true, countQuery = "select count(1) from tb_clothes")
    public Page<Clothes> findByKeyword(String keyword, Pageable pageable);
	
	//第二种写法
    //@Query(value = "select * from tb_clothes where cname like CONCAT('%', ?1, '%')", nativeQuery = true, countQuery = "select count(1) from tb_clothes")
    //public Page<Clothes> findByKeyword(String keyword, Pageable pageable);
}

}

第一种写法确保无误,不会报错。

但是第二种写法虽然这里不报错,但是在其它地方可能会报错,所以还是统一采取第一种写法好

采取第二种写法可能会无法读取参数:

Could not locate ordinal parameter [1], expecting one of []

调用

package com.example.clothingmanager;

import com.example.clothingmanager.bean.Clothes;
import com.example.clothingmanager.dao.ClothesDao;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;

import java.util.List;

@SpringBootTest
class ClothingmanagerApplicationTests {
    @Autowired
    ClothesDao clothesDao;

    @Test
    void contextLoads() {
        Sort.Order order = new Sort.Order(Sort.Direction.DESC, "citem");
        Pageable pageable = PageRequest.of(1, 5, Sort.by(order));
        Page<Clothes> list = clothesDao.findByKeyword("衣服", pageable);
        
        System.out.println(list.getContent().size());
        for(Clothes clothes : list.getContent()){
            System.out.println(clothes);
        }
    }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值