当你的抽象类继承了JpaRepository类时,就会拥有一些基本的增删改查操作。但是,很多时候只有这些简单的功能是不够的的,jpa也支持原生SQL和实体类SQL进行自定义查询。
简单例子:
@Query(value = "select name,author,price from Book b where b.price>?1 and b.price<?2") List<Book> findByPriceRange(long price1, long price2);
Like表达式:
@Query(value = "select name,author,price from Book b where b.name like %:name%") List<Book> findByNameMatch(@Param("name") String name);
原生SQL
使用Native SQL Query(nativeQuery=true则使用原生SQL默认HQL)
所谓本地查询,就是使用原生的sql语句(根据数据库的不同,在sql的语法或结构方面可能有所区别)进行查询数据库的操作
@Query(value = "select * from book b where b.name=?1", nativeQuery = true) List<Book> findByName(String name);
实体类SQL
@Query(value = "SELECT new com.x3.schedule.saas.table.ScheduleUserView(" + " t2.userId, t1.title, t1.content, t1.completeTime, t2.scheduleState)" + " FROM ScheduleTable t1 LEFT JOIN ScheduleUserTable t2 ON t1.scheduleId = t2.scheduleId " + " WHERE t2.userId = ?1 AND t2.scheduleState = ?2") List<ScheduleUserView> findScheduleListByState(Long userId, int scheduleState);
使用@Param注解注入参数
@Query(value = "select name,author,price from Book b where b.name = :name AND b.author=:author AND b.price=:price") List<Book> findByNamedParam(@Param("name") String name, @Param("author") String author, @Param("price") long price);
SPEL表达式(使用时请参考最后的补充说明)
'#{#entityName}'值为'Book'对象对应的数据表名称(book)。
@Query(value = "select * from #{#entityName} b where b.name=?1", nativeQuery = true) List<Book> findByName(String name);
注:
1)update或delete时必须使用@Modifying和@Transactional对方法进行注解,才能使得ORM知道现在要执行的是写操作
2)有时候不加@Param注解参数,可能会报如下异常:
org.springframework.dao.InvalidDataAccessApiUsageException: Name must not be null or empty!; nested exception is java.lang.IllegalArgumentException: Name must not be null or empty!
3)当使用集合作为条件时,可参考此处的ids
@Transactional @Modifying @Query("update ShopCoupon sc set sc.deleted = true where sc.id in :ids") public void deleteByIds(@Param(value = "ids") List<String> ids);
热门文章
- 正规领养宠物流程商家会打电话吗(正规领养宠物流程商家会打电话吗)
- 属马养猫好吗(属马人养猫的大忌)
- 十大动物疫苗公司排名前十名 十大动物疫苗公司排名前十名有哪些
- python mysql 查询(in 、 like)
- 猫咪3针疫苗一共多少元钱一针啊(猫咪3针疫苗一共多少元钱一针啊视频)
- 2月2日最新Free Clash Meta订阅 | 20.3M/S|2025年Clash/V2ray/Shadowrocket/SSR免费节点地址链接分享
- 在哪里能免费领养狗狗(去哪里免费领养狗狗)
- 2月3日最新Free Clash Meta订阅 | 22.7M/S|2025年Shadowrocket/SSR/Clash/V2ray免费节点地址链接分享
- 动物疫苗种类有几种类型图片大全(动物疫苗的种类和制备原理)
- 派特盟宠物美容培训学校(派特宠物加盟)
归纳
-
24 2025-02