@Query注解的用法(Spring Data JPA)

参考文章:http://www.tuicool.com/articles/jQJBNvjava

 

1. 一个使用@Query注解的简单例子spring

@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表达式sql

@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的语法或结构方面可能有所区别)进行查询数据库的操做。ui

@Query(value = "select * from book b where b.name=?1", nativeQuery = true)
List<Book> findByName(String name);

 

4. 使用@Param注解注入参数spa

@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表达式(使用时请参考最后的补充说明)code

   '#{#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);blog

}

 

6. 一个较完整的例子it

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);

 

 

补充说明(2017-01-12):

  有同窗提出来了,例子5中用'#{#entityName}'为啥取不到值啊?

  先来讲一说'#{#entityName}'究竟是个啥。从字面来看,'#{#entityName}'不就是实体类的名称么,对,他就是。

  实体类Book,使用@Entity注解后,spring会将实体类Book归入管理。默认'#{#entityName}'的值就是'Book'。

  可是若是使用了@Entity(name = "book")来注解实体类Book,此时'#{#entityName}'的值就变成了'book'。

  到此,事情就明了了,只须要在用@Entity来注解实体类时指定name为此实体类对应的表名。在原生sql语句中,就能够把'#{#entityName}'来做为数据表名使用。

相关文章
相关标签/搜索