JpaRepository接口

JpaRepository

  • 提供了JPA相关功能
 List findAll(); //查找所有实体 
List findAll(Sort sort); //排序、查找所有实体 
List save(Iterable entities);//保存集合 
void flush();//执行缓存与数据库同步 
T saveAndFlush(T entity);//强制执行持久化 
void deleteInBatch(Iterable entities);//删除一个实体集合 
 @Test
   public void testJpaRepository(){
       Person person = new Person();
       person.setBrith(new Date());
       person.setEmail("[email protected]");
       person.setName("xcv");
       //person.setId(3);
       //当数据不存在即不设置id时 执行添加操作 
       personRepsotory.saveAndFlush(person);
   }

你可能感兴趣的:(SpringData)