From b552842b9de9126877d241f6aad3b36110dab755 Mon Sep 17 00:00:00 2001 From: Cristian Greco Date: Mon, 5 Mar 2018 11:39:25 +0000 Subject: [PATCH] Fix link to Spring Data JPA in docs Closes gh-12342 --- .../src/main/asciidoc/spring-boot-features.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 8d7af1b4ad..0da95fa41b 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -3511,10 +3511,10 @@ how-to. [[boot-features-spring-data-jpa-repositories]] ==== Spring Data JPA Repositories -{http://projects.spring.io/spring-data-jpa/}[Spring Data JPA] repositories are interfaces -that you can define to access data. JPA queries are created automatically from your method -names. For example, a `CityRepository` interface might declare a `findAllByState(String -state)` method to find all the cities in a given state. +{spring-data-jpa}[Spring Data JPA] repositories are interfaces that you can define to +access data. JPA queries are created automatically from your method names. For example, a +`CityRepository` interface might declare a `findAllByState(String state)` method to find +all the cities in a given state. For more complex queries, you can annotate your method with Spring Data's {spring-data-javadoc}/repository/Query.html[`Query`] annotation.