• spring data jpa @query的用法


     @Query注解的用法(Spring Data JPA)
    
    参考文章:http://www.tuicool.com/articles/jQJBNv
    
     
    
    1. 一个使用@Query注解的简单例子
    
    @Query(value = "select name,author,price from Book b where b.price>?1 and b.price<?2")
    List<Book> findByPriceRange(long price1, long price2);
    
     
    
    2.  Like表达式
    
    @Query(value = "select name,author,price from Book b where b.name like %:name%")
    List<Book> findByNameMatch(@Param("name") String name);
    
     
    
    3. 使用Native SQL Query
    
    所谓本地查询,就是使用原生的sql语句(根据数据库的不同,在sql的语法或结构方面可能有所区别)进行查询数据库的操作。
    
    @Query(value = "select * from book b where b.name=?1", nativeQuery = true)
    List<Book> findByName(String name);
    
     
    
    4. 使用@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);
    
     
    
    5. SPEL表达式(使用时请参考最后的补充说明)
    
       '#{#entityName}'值为'Book'对象对应的数据表名称(book)。
    
    public interface BookQueryRepositoryExample extends Repository<Book, Long>{
    
           @Query(value = "select * from #{#entityName} b where b.name=?1", nativeQuery = true)
           List<Book> findByName(String name);
    
    }
    
     
    
    6. 一个较完整的例子
    复制代码
    
    public interface BookQueryRepositoryExample extends Repository<Book, Long> {
        @Query(value = "select * from Book b where b.name=?1", nativeQuery = true) 
        List<Book> findByName(String name);// 此方法sql将会报错(java.lang.IllegalArgumentException),看出原因了吗,若没看出来,请看下一个例子
    
        @Query(value = "select name,author,price from Book b where b.price>?1 and b.price<?2")
        List<Book> findByPriceRange(long price1, long price2);
    
        @Query(value = "select name,author,price from Book b where b.name like %:name%")
        List<Book> findByNameMatch(@Param("name") String name);
    
        @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);
    
    }
    
    复制代码
    
     
    
    7.  解释例6中错误的原因:
    
         因为指定了nativeQuery = true,即使用原生的sql语句查询。使用java对象'Book'作为表名来查自然是不对的。只需将Book替换为表名book。
    
    @Query(value = "select * from book b where b.name=?1", nativeQuery = true)
    List<Book> findByName(String name);
  • 相关阅读:
    Agile方法
    电子书下载:Beginning Nokia Apps Development: Using MeeGo, Mobile QT and OpenSymbian
    电子书下载:Pro Oracle SQL
    电子书下载:Algorithms of the Intelligent Web
    BlogEngine .NET 日期控件显示问题
    电子书下载:Beginning JavaScript, 4th Edition
    电子书下载:Sams Teach Yourself iPhone Application Development in 24 Hours, 2nd Edition
    电子书下载:Pro ASP.NET 4 in VB 2010, 3rd Edition
    电子书下载:MCTS SelfPaced Training Kit (Exam 70515): Web Applications Development with Microsoft .NET Framework 4
    电子书下载:Unity 3D Game Development by Example: Beginner’s Guide
  • 原文地址:https://www.cnblogs.com/lshan/p/9186255.html
Copyright © 2020-2023  润新知