From 547ce104fbaf77fd647b58c2933183a0ae967ca1 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Tue, 12 Sep 2017 15:51:51 +0200 Subject: [PATCH] DATAJPA-1057 - Fix reference to SimpleJpaRepository in reference docs. --- src/main/asciidoc/jpa.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/jpa.adoc b/src/main/asciidoc/jpa.adoc index 87d1a48be..1fb8eb57a 100644 --- a/src/main/asciidoc/jpa.adoc +++ b/src/main/asciidoc/jpa.adoc @@ -717,7 +717,7 @@ include::query-by-example.adoc[leveloffset=+1] [[transactions]] == Transactionality -CRUD methods on repository instances are transactional by default. For reading operations the transaction configuration `readOnly` flag is set to true, all others are configured with a plain `@Transactional` so that default transaction configuration applies. For details see JavaDoc of `CrudRepository`. If you need to tweak transaction configuration for one of the methods declared in a repository simply redeclare the method in your repository interface as follows: +CRUD methods on repository instances are transactional by default. For reading operations the transaction configuration `readOnly` flag is set to `true`, all others are configured with a plain `@Transactional` so that default transaction configuration applies. For details see JavaDoc of link:$$http://docs.spring.io/spring-data/data-jpa/docs/current/api/index.html?org/springframework/data/jpa/repository/support/SimpleJpaRepository.html$$[`SimpleJpaRepository`]. If you need to tweak transaction configuration for one of the methods declared in a repository simply redeclare the method in your repository interface as follows: .Custom transaction configuration for CRUD ====