jpa2.0以上findOne和getOne的区别

Posted yinwutuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jpa2.0以上findOne和getOne的区别相关的知识,希望对你有一定的参考价值。

 
/**
 * Returns a single entity matching the given {@link Example} or {@literal null} if none was found.
 *
 * @param example must not be {@literal null}.
 * @return a single entity matching the given {@link Example} or {@link Optional#empty()} if none was found.
 * @throws org.springframework.dao.IncorrectResultSizeDataAccessException if the Example yields more than one result.
 */
<S extends T> Optional<S> findOne(Example<S> example);
 
 
/**
 * Returns a reference to the entity with the given identifier.
 *
 * @param id must not be {@literal null}.
 * @return a reference to the entity with the given identifier.
 * @see EntityManager#getReference(Class, Object)
 * @throws javax.persistence.EntityNotFoundException if no entity exists for given {@code id}.
 */
T getOne(ID id);

 

findone:返回实体的optional对象

getone:返回实体的引用,代理对象

 

实体转json的过程中会出错,用debug查看实体其实是空,数据是放在代理对象中的,但jackson将实体转json没有拿到代理对象,然后产生以下错误,这时候json转换失败再导致输出流报错。

 

getOne示例:

技术分享图片

 

以上是关于jpa2.0以上findOne和getOne的区别的主要内容,如果未能解决你的问题,请参考以下文章

CrudRepository findOne()和JpaRepository getOne()之间的区别

当使用getOne和findOne方法时,Spring Data JPA

Spring Boot2.X中findOne的用法

JPA 2.0 中的会话和事务有啥区别?

Mongoose 中的 Model.findOne() 和 Model.findById() 有啥区别?

JPA 2.0 如何处理死锁(Eclipselink JPA2.0 MySQL)