zoukankan      html  css  js  c++  java
  • SpringData关键字查询练习

    我们在上一节知道SpringData关键字有很多,我就拿几个例子练练手

    1.需求我们查询lastName like sun and id < ?的查询

    package com.fxr.springdata;
    
    import java.util.List;
    
    import org.springframework.data.jpa.repository.JpaRepository;
    
    
    public interface PersonRepsotory extends JpaRepository<Person,Integer>{
    
    	//根据lastName来获取对应的Person
    	Person getByLastName(String lastName);
    	
    	//我们来试着写一个查询laskName like 'sun' and id < ?的方法
    	List<Person> getByLastNameStartingWithAndIdLessThan(String lastName,Integer id);
    	
    }
    

    2.需求我们查询WHERE lastName LIKE %? AND id < ?

    package com.fxr.springdata;
    
    import java.util.List;
    
    import org.springframework.data.jpa.repository.JpaRepository;
    
    
    public interface PersonRepsotory extends JpaRepository<Person,Integer>{
    
    	//根据lastName来获取对应的Person
    	Person getByLastName(String lastName);
    	
    	//我们来试着写一个查询laskName like 'sun' and id < ?的方法
    	List<Person> getByLastNameStartingWithAndIdLessThan(String lastName,Integer id);
    	
    	
    	//WHERE lastName LIKE %? AND id > ?
    	List<Person> getByLastNameEndingWithAndIdGreaterThan(String lastName,Integer id);
    	
    }
    

      好了,对着我们上一节那个关键字的表,你可以写出符合你的查询的逻辑语句,如果我们在项目中遇见业务特别复杂的查询的话,我们需要自己写SQL,这个怎么实现,我们会在以后的章节中讲到,嘿嘿·········

  • 相关阅读:
    lastz
    Ctrl + c 强制退出
    jobs|ps|杀死nohup
    查询节点qhost
    great vision|be quite honest with you
    golang viper ReadRemoteConfig error
    使用cat和EOF生成 shell 脚本时会自动解析变量的解决办法
    centos install ruby
    golang 性能提升
    查询车系特定口碑信息
  • 原文地址:https://www.cnblogs.com/airycode/p/6535475.html
Copyright © 2011-2022 走看看