c语言sscanf函数的用法是什么
294
2022-12-18
JPA findById方法和getOne方法的区别说明
目录findById方法和getOne方法区别getOne()方法是JpaRepository接口中定义的再看findById()方法spring-data-jpa中findById()的使用
findById方法和getOne方法区别
Jpa基础的CRUD方法继承自接口CrudRepository
S save(S entity);
Iterable saveAll(Iterable entities);
Optional
boolean existsById(ID id);
Iterable
Iterable
long count();
void deleteById(ID id);
void delete(T entity);
void deleteAll(Iterable extends T> entities);
void deleteAll();
getOne()方法是JpaRepository接口中定义的
源码如下:
/**
* Returns a reference to the entity with the given identifier. DepenFItQcding on how the JPA persistence provider is
* implemented this is very likely to always return an instance and throw an
* {@link javax.persistence.EntityNotFoundException} on first access. Some of them will reject invalid identifiers
* immediately.
*
* @param id must not be {@literal null}.
* @return a reference to the entity with the given identifier.
* @see EntityManager#getReference(Class, Object) for details on when an exception is thrown.
*/
T getOne(ID id);
网上找的源码:
public T getOne(ID id) {
Assert.notNull(id, "The given id must not be null!");
return this.em.getReference(this.getDomainClass(), id);
}
由getOne方法的源码可见,getOne方法会返回一个和给定id匹配的实体的引用,方法实际是调用getReference方法,也就是说加载策略是延迟加载,直到调用这个对象的时候才真正从数据库中进行查询(x_x)。
再看findById()方法
public Optional
Assert.notNull(id, "The given id must not be null!");
Class
if (this.metadata == null) {
return Optional.ofNullable(this.em.find(domainType, id));
} else {
LockModeType type = this.metadata.getLockModeType();
Map
return Optional.ofNullable(type == null ? this.em.find(domainType, id, hints) : this.em.find(domainType, id, type, hints));
}
}
findById实际上调用的是find方法,采用立即加载方式,执行这条查询语句的时候就会立刻从数据库中进行查询,不过findById方法返回的是一个Optional,需要对这个Optional调用.get()方法才能得到需要的实体。
总结就是getOne方法是懒加载,直到调用它返回的实体时才会对数据库进行查询,findById是立即加载,主要调用方法就会去数据库查询。getOne方法直接返回一个实体,fihttp://ndById方法返回一个Optional,需要调用.get()方法获取实体。
spring-data-jpa中findById()的使用
springboot 2.x 版本后,较之前的版本在此方法的使用上有差:
如果找到匹配的id数据,则赋值给foo;否则则将括号中的对象赋值给foo。
Foo foo = repository.findById(id)
.orElse(null);
Foo foo = repository.findById(id)
.orElse(new Object());
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~