Spring JPA нет @Transnational при сохранении JpaRepository - PullRequest
0 голосов
/ 23 октября 2018

по умолчанию определяемые пользователем методы репозитория доступны только для чтения, модифицирующие запросы переопределяются @Transactional, пример из SimpleJpaRepository из весны:

@Repository
@Transactional(readOnly = true)
public class SimpleJpaRepository<T, ID> implements JpaRepository<T, ID>, JpaSpecificationExecutor<T> {

 */
@Transactional
public <S extends T> S save(S entity) {

    if (entityInformation.isNew(entity)) {
        em.persist(entity);
        return entity;
    } else {
        return em.merge(entity);
    }
}

Я заметил, что JpaRepository не переопределяет сохранение с @Transactional:

@NoRepositoryBean
public interface JpaRepository<T, ID> extends PagingAndSortingRepository<T, ID>, QueryByExampleExecutor<T> {

метод сохранения находится внутри CrudRepository (здесь нет транснационального)

/**
 * Saves a given entity. Use the returned instance for further operations as the save operation might have changed the
 * entity instance completely.
 * 
 * @param entity must not be {@literal null}.
 * @return the saved entity will never be {@literal null}.
 */
<S extends T> S save(S entity);

так как работает метод сохранения при расширении JpaRepository без примера @Transnational:

@Repository
public interface UserRepository extends JpaRepository<User, Long> {
}

здесь нет транзакций

@Override
public void test() {
    {
        User user=new User();
        user.setName("hello");
        user.setLastName("hello");
        user.setActive(1);
        user.setPassword("hello");
        user.setEmail("hello@hello.com");
        userRepository.save(user);

    }
}

1 Ответ

0 голосов
/ 23 октября 2018

Посмотрите на SimpleJpaRepository.

https://github.com/spring-projects/spring-data-jpa/blob/master/src/main/java/org/springframework/data/jpa/repository/support/SimpleJpaRepository.java

Это реализация репозитория по умолчанию, которая показывает, как @Transactional используется также в сгенерированных классах из ваших интерфейсов репозитория.

Почему вы думаете, чтосохранить не транзакционный?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...