Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add overload of refresh() accepting an EntityGraph #672

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions api/src/main/java/jakarta/persistence/EntityManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -885,6 +885,26 @@ void refresh(Object entity, LockModeType lockMode,
void refresh(Object entity,
RefreshOption... options);

/**
* Refresh the state of the given managed entity instance from the
* database, along with all associated entities reachable by
* following the given {@link EntityGraph}, overwriting changes
* made to the entity, if any. This operation does not cascade to
* associations marked {@link CascadeType#REFRESH cascade=REFRESH}
* unless they are included in the given entity graph.
* @param entity a managed entity instance
* @throws IllegalArgumentException if the instance is not an entity
* or if the entity is not managed
* @throws TransactionRequiredException if there is no
* transaction when invoked on a container-managed
* entity manager of type
* {@link PersistenceContextType#TRANSACTION}
* @throws EntityNotFoundException if the entity no longer exists in
* the database
* @since 4.0
*/
<T> void refresh(T entity, EntityGraph<T> entityGraph);

/**
* Clear the persistence context, causing all managed entities to
* become detached. Changes made to entities that have not already
Expand Down