zoukankan      html  css  js  c++  java
  • 使用 @Query 注解实现查询

    // ------------------------------------ 使用 @Query 注解
    // 没有参数的查询
    @Query("select p from Person p where p.id = (select max(p2.id) from Person p2)")
    Person getMaxIdPerson();
    
    /**
     * 参数名称和参数顺序耦合
     * @param lastName
     * @param email
     * @return
     */
    @Query("select p from Person p where lastName=?1 and email=?2")
    Person readPersonByLastNameAndEmail(String lastName,String email);
    @Query(value = "select name,author,price from Book b where b.price>?1 and b.price<?2") List<Book> findByPriceRange(long price1, long price2); /** * 参数绑定 @Param注解注入参数 */ @Query("select p from Person p where email=:email and lastName=:name") Person readPersonByLastNameAndEmailThroughName(@Param("name") String lastName,@Param("email") String email);// 使用 like @Query("select p from Person p where lastName like ?1") Person readPersonByLike(String likeName); // @Query 注解支持使用百分号 @Query("select p from Person p where lastName like %?1%") Person readPersonByLike2(String likeName); // @Query 注解支持使用百分号 @Query("select p from Person p where lastName like %:lastName%") Person readPersonByLike3(@Param("lastName")String name); // 使用原生的 SQL 加上 nativeQuery=true @Query(value="select * from jpa_person p1 where p1.last_name like %:lastName%",nativeQuery=true) Person getPersonUsingOriginSQL(@Param("lastName")String lastName); 测试代码: // 以下测试 @Query 注解 @Test public void testQueryAnnotationWithoutParam(){ Person person = personRepository.getMaxIdPerson(); System.out.println(person); } @Test public void testQueryAnnotationWithParam(){ Person person = personRepository.readPersonByLastNameAndEmail("liwei","liwei@sina.com"); System.out.println(person); } @Test public void testQueryAnnotationWithParamThroughName(){ Person person = personRepository.readPersonByLastNameAndEmailThroughName("zhouguang","zhouguang@163.com"); System.out.println(person); } @Test public void testQueryAnnotationWithParamThroughLike(){ Person person = personRepository.readPersonByLike("%zhou%"); System.out.println(person); } @Test public void testQueryAnnotationWithParamThroughLike2(){ Person person = personRepository.readPersonByLike2("hu"); System.out.println(person); } @Test public void testQueryAnnotationWithParamThroughLike3(){ Person person = personRepository.readPersonByLike3("wei"); System.out.println(person); } @Test public void testQueryAnnotationWithParamThroughLike4(){ Person person = personRepository.getPersonUsingOriginSQL("wei"); System.out.println(person); }
  • 相关阅读:
    Java在控制台运行IDE工具编写的程序
    mysql数据库执行存储过程问题
    Java之正则表达式在字符串中查找中文
    java之endwith()方法以及正则表达式匹配中文
    工具资源 Java并发编程:CountDownLatch、CyclicBarrier和 Semaphore
    5、概率图模型 Inference-Variable_Elimination
    4、概率图模型:Template Modles
    3、概率图模型:Local Structure in Markov Network
    2、概率图模型: Markov Random Fields
    1、概率图模型: Bayesian Networks
  • 原文地址:https://www.cnblogs.com/xiaolei2017/p/8863660.html
Copyright © 2011-2022 走看看