diff --git a/CODE_OF_CONDUCT.adoc b/CODE_OF_CONDUCT.adoc
index f64fb1b7a..33ae7bc9f 100644
--- a/CODE_OF_CONDUCT.adoc
+++ b/CODE_OF_CONDUCT.adoc
@@ -24,4 +24,4 @@ Instances of abusive, harassing, or otherwise unacceptable behavior may be repor
All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances.
Maintainers are obligated to maintain confidentiality with regard to the reporter of an incident.
-This Code of Conduct is adapted from the http://contributor-covenant.org[Contributor Covenant], version 1.3.0, available at http://contributor-covenant.org/version/1/3/0/[contributor-covenant.org/version/1/3/0/].
\ No newline at end of file
+This Code of Conduct is adapted from the https://contributor-covenant.org[Contributor Covenant], version 1.3.0, available at https://contributor-covenant.org/version/1/3/0/[contributor-covenant.org/version/1/3/0/].
\ No newline at end of file
diff --git a/readme.md b/readme.md
index 9c101cde0..b86310dec 100644
--- a/readme.md
+++ b/readme.md
@@ -1,11 +1,11 @@
-[](http://projects.spring.io/spring-data-jpa/#quick-start)
-[](http://projects.spring.io/spring-data-jpa/#quick-start)
+[](https://projects.spring.io/spring-data-jpa/#quick-start)
+[](https://projects.spring.io/spring-data-jpa/#quick-start)
[](https://travis-ci.org/spring-projects/spring-data-jpa)
# Spring Data JPA
-The primary goal of the [Spring Data](http://projects.spring.io/spring-data) project is to make it easier to build Spring-powered applications that use data access technologies. This module deals with enhanced support for JPA based data access layers.
+The primary goal of the [Spring Data](https://projects.spring.io/spring-data) project is to make it easier to build Spring-powered applications that use data access technologies. This module deals with enhanced support for JPA based data access layers.
## Features ##
@@ -19,12 +19,12 @@ The primary goal of the [Spring Data](http://projects.spring.io/spring-data) pro
## Getting Help ##
-This README as well as the [reference documentation](http://docs.spring.io/spring-data/data-jpa/docs/current/reference/html) are the best places to start learning about Spring Data JPA. There are also [two sample applications](https://github.com/spring-projects/spring-data-examples) available to look at.
+This README as well as the [reference documentation](https://docs.spring.io/spring-data/data-jpa/docs/current/reference/html) are the best places to start learning about Spring Data JPA. There are also [two sample applications](https://github.com/spring-projects/spring-data-examples) available to look at.
-The main project [website](http://projects.spring.io/spring-data) contains links to basic project information such as source code, JavaDocs, Issue tracking, etc.
+The main project [website](https://projects.spring.io/spring-data) contains links to basic project information such as source code, JavaDocs, Issue tracking, etc.
-For more detailed questions, use [stackoverflow](http://stackoverflow.com/questions/tagged/spring-data-jpa). If you are new to Spring as well as to Spring Data, look for information about [Spring projects](http://projects.spring.io). You should also have a look at our new Spring Guides
-[Accessing Data with JPA](http://spring.io/guides/gs/accessing-data-jpa/) that leverages the simplified configuration provided by [Spring Boot](http://projects.spring.io/spring-boot/) as well as [Accessing JPA Data with REST](http://spring.io/guides/gs/accessing-data-rest/)..
+For more detailed questions, use [stackoverflow](https://stackoverflow.com/questions/tagged/spring-data-jpa). If you are new to Spring as well as to Spring Data, look for information about [Spring projects](https://projects.spring.io). You should also have a look at our new Spring Guides
+[Accessing Data with JPA](https://spring.io/guides/gs/accessing-data-jpa/) that leverages the simplified configuration provided by [Spring Boot](https://projects.spring.io/spring-boot/) as well as [Accessing JPA Data with REST](https://spring.io/guides/gs/accessing-data-rest/)..
## Quick Start ##
@@ -50,7 +50,7 @@ If you'd rather like the latest snapshots of the upcoming major version, use our
spring-libs-snapshot
Spring Snapshot Repository
- http://repo.spring.io/libs-snapshot
+ https://repo.spring.io/libs-snapshot
```
@@ -145,9 +145,9 @@ public class UserRepositoryIntegrationTest {
Here are some ways for you to get involved in the community:
-* Get involved with the Spring community by helping out on [stackoverflow](http://stackoverflow.com/questions/tagged/spring-data-jpa) by responding to questions and joining the debate.
+* Get involved with the Spring community by helping out on [stackoverflow](https://stackoverflow.com/questions/tagged/spring-data-jpa) by responding to questions and joining the debate.
* Create [JIRA](https://jira.spring.io/browse/DATAJPA) tickets for bugs and new features and comment and vote on the ones that you are interested in.
-* Github is for social coding: if you want to write code, we encourage contributions through pull requests from [forks of this repository](http://help.github.com/forking/). If you want to contribute code this way, please reference a JIRA ticket as well covering the specific issue you are addressing.
-* Watch for upcoming articles on Spring by [subscribing](http://spring.io/blog) to spring.io.
+* Github is for social coding: if you want to write code, we encourage contributions through pull requests from [forks of this repository](https://help.github.com/forking/). If you want to contribute code this way, please reference a JIRA ticket as well covering the specific issue you are addressing.
+* Watch for upcoming articles on Spring by [subscribing](https://spring.io/blog) to spring.io.
Before we accept a non-trivial patch or pull request we will need you to [sign the Contributor License Agreement](https://cla.pivotal.io/sign/spring). Signing the contributor’s agreement does not grant anyone commit rights to the main repository, but it does mean that we can accept your contributions, and you will get an author credit if we do. If you forget to do so, you'll be reminded when you submit a pull request. Active contributors might be asked to join the core team, and given the ability to merge pull requests.
diff --git a/src/main/asciidoc/glossary.adoc b/src/main/asciidoc/glossary.adoc
index ec3b7aa1a..18a002717 100644
--- a/src/main/asciidoc/glossary.adoc
+++ b/src/main/asciidoc/glossary.adoc
@@ -10,12 +10,12 @@ CRUD :: Create, Read, Update, Delete - Basic persistence operations.
DAO :: Data Access Object - Pattern to separate persisting logic from the object to be persisted
-Dependency Injection :: Pattern to hand a component's dependency to the component from outside, freeing the component to lookup the dependent itself. For more information, see link:$$http://en.wikipedia.org/wiki/Dependency_Injection$$[http://en.wikipedia.org/wiki/Dependency_Injection].
+Dependency Injection :: Pattern to hand a component's dependency to the component from outside, freeing the component to lookup the dependent itself. For more information, see link:$$https://en.wikipedia.org/wiki/Dependency_Injection$$[https://en.wikipedia.org/wiki/Dependency_Injection].
-EclipseLink :: Object relational mapper implementing JPA - link:$$http://www.eclipselink.org$$[http://www.eclipselink.org]
+EclipseLink :: Object relational mapper implementing JPA - link:$$https://www.eclipse.org/eclipselink/$$[https://www.eclipse.org/eclipselink/]
-Hibernate :: Object relational mapper implementing JPA - link:$$http://www.hibernate.org$$[http://www.hibernate.org]
+Hibernate :: Object relational mapper implementing JPA - link:$$https://hibernate.org/$$[https://hibernate.org/]
JPA :: Java Persistence API
-Spring :: Java application framework - link:$$http://projects.spring.io/spring-framework$$[http://projects.spring.io/spring-framework]
+Spring :: Java application framework - link:$$https://projects.spring.io/spring-framework$$[https://projects.spring.io/spring-framework]
diff --git a/src/main/asciidoc/index.adoc b/src/main/asciidoc/index.adoc
index 33dc9d47a..6a3bcec26 100644
--- a/src/main/asciidoc/index.adoc
+++ b/src/main/asciidoc/index.adoc
@@ -4,7 +4,7 @@ Oliver Gierke; Thomas Darimont; Christoph Strobl; Mark Paluch; Jay Bryant
:revdate: {localdate}
ifdef::backend-epub3[:front-cover-image: image:epub-cover.png[Front Cover,1050,1600]]
:spring-data-commons-docs: ../../../../spring-data-commons/src/main/asciidoc
-:spring-framework-docs: http://docs.spring.io/spring-framework/docs/{springVersion}/spring-framework-reference/
+:spring-framework-docs: https://docs.spring.io/spring-framework/docs/{springVersion}/spring-framework-reference/
(C) 2008-2019 The original authors.
diff --git a/src/main/asciidoc/jpa.adoc b/src/main/asciidoc/jpa.adoc
index fb11484fb..a3ae0d9e7 100644
--- a/src/main/asciidoc/jpa.adoc
+++ b/src/main/asciidoc/jpa.adoc
@@ -25,9 +25,9 @@ The JPA module of Spring Data contains a custom namespace that allows defining r
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jpa="http://www.springframework.org/schema/data/jpa"
xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans.xsd
+ https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/data/jpa
- http://www.springframework.org/schema/data/jpa/spring-jpa.xsd">
+ https://www.springframework.org/schema/data/jpa/spring-jpa.xsd">
@@ -144,8 +144,8 @@ Spring Data JPA offers the following strategies to detect whether an entity is n
Without such a Version-property Spring Data JPA inspects the identifier property of the given entity.
If the identifier property is `null`, then the entity is assumed to be new.
Otherwise, it is assumed to be not new.
-* Implementing `Persistable`: If an entity implements `Persistable`, Spring Data JPA delegates the new detection to the `isNew(…)` method of the entity. See the link:$$http://docs.spring.io/spring-data/data-commons/docs/current/api/index.html?org/springframework/data/domain/Persistable.html$$[JavaDoc] for details.
-* Implementing `EntityInformation`: You can customize the `EntityInformation` abstraction used in the `SimpleJpaRepository` implementation by creating a subclass of `JpaRepositoryFactory` and overriding the `getEntityInformation(…)` method accordingly. You then have to register the custom implementation of `JpaRepositoryFactory` as a Spring bean. Note that this should be rarely necessary. See the link:$$http://docs.spring.io/spring-data/data-jpa/docs/current/api/index.html?org/springframework/data/jpa/repository/support/JpaRepositoryFactory.html$$[JavaDoc] for details.
+* Implementing `Persistable`: If an entity implements `Persistable`, Spring Data JPA delegates the new detection to the `isNew(…)` method of the entity. See the link:$$https://docs.spring.io/spring-data/data-commons/docs/current/api/index.html?org/springframework/data/domain/Persistable.html$$[JavaDoc] for details.
+* Implementing `EntityInformation`: You can customize the `EntityInformation` abstraction used in the `SimpleJpaRepository` implementation by creating a subclass of `JpaRepositoryFactory` and overriding the `getEntityInformation(…)` method accordingly. You then have to register the custom implementation of `JpaRepositoryFactory` as a Spring bean. Note that this should be rarely necessary. See the link:$$https://docs.spring.io/spring-data/data-jpa/docs/current/api/index.html?org/springframework/data/jpa/repository/support/JpaRepositoryFactory.html$$[JavaDoc] for details.
[[jpa.query-methods]]
== Query Methods
@@ -735,7 +735,7 @@ public class CustomerSpecs {
----
====
-Admittedly, the amount of boilerplate leaves room for improvement (that may eventually be reduced by Java 8 closures), but the client side becomes much nicer, as you will see later in this section. The `_Customer` type is a metamodel type generated using the JPA Metamodel generator (see the link:$$http://docs.jboss.org/hibernate/jpamodelgen/1.0/reference/en-US/html_single/#whatisit$$[Hibernate implementation's documentation for an example]). So the expression, `_Customer.createdAt`, assumes the `Customer` has a `createdAt` attribute of type `Date`. Besides that, we have expressed some criteria on a business requirement abstraction level and created executable `Specifications`. So a client might use a `Specification` as follows:
+Admittedly, the amount of boilerplate leaves room for improvement (that may eventually be reduced by Java 8 closures), but the client side becomes much nicer, as you will see later in this section. The `_Customer` type is a metamodel type generated using the JPA Metamodel generator (see the link:$$https://docs.jboss.org/hibernate/jpamodelgen/1.0/reference/en-US/html_single/#whatisit$$[Hibernate implementation's documentation for an example]). So the expression, `_Customer.createdAt`, assumes the `Customer` has a `createdAt` attribute of type `Date`. Besides that, we have expressed some criteria on a business requirement abstraction level and created executable `Specifications`. So a client might use a `Specification` as follows:
.Using a simple Specification
====
@@ -765,7 +765,7 @@ include::query-by-example.adoc[leveloffset=+1]
[[transactions]]
== Transactionality
-By default, CRUD methods on repository instances are transactional. For read 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, redeclare the method in your repository interface, as follows:
+By default, CRUD methods on repository instances are transactional. For read 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:$$https://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, redeclare the method in your repository interface, as follows:
.Custom transaction configuration for CRUD
====
@@ -1015,7 +1015,7 @@ A plain JPA setup requires all annotation-mapped entity classes to be listed in
----
====
-NOTE: As of Spring 3.1, a package to scan can be configured on the `LocalContainerEntityManagerFactoryBean` directly to enable classpath scanning for entity classes. See the link:$$http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/orm/jpa/LocalContainerEntityManagerFactoryBean.html#setPackagesToScan(java.lang.String...)$$[JavaDoc] for details.
+NOTE: As of Spring 3.1, a package to scan can be configured on the `LocalContainerEntityManagerFactoryBean` directly to enable classpath scanning for entity classes. See the link:$$https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/orm/jpa/LocalContainerEntityManagerFactoryBean.html#setPackagesToScan(java.lang.String...)$$[JavaDoc] for details.
[[jpd.misc.cdi-integration]]
== CDI Integration
diff --git a/src/main/asciidoc/preface.adoc b/src/main/asciidoc/preface.adoc
index f14538f23..e09321105 100644
--- a/src/main/asciidoc/preface.adoc
+++ b/src/main/asciidoc/preface.adoc
@@ -6,7 +6,7 @@ Spring Data JPA provides repository support for the Java Persistence API (JPA).
[[project]]
== Project Metadata
-* Version control - http://github.com/spring-projects/spring-data-jpa
+* Version control - https://github.com/spring-projects/spring-data-jpa
* Bugtracker - https://jira.spring.io/browse/DATAJPA
* Release repository - https://repo.spring.io/libs-release
* Milestone repository - https://repo.spring.io/libs-milestone
diff --git a/src/main/java/org/springframework/data/jpa/convert/threetenbp/ThreeTenBackPortJpaConverters.java b/src/main/java/org/springframework/data/jpa/convert/threetenbp/ThreeTenBackPortJpaConverters.java
index 875511176..7856abd0f 100644
--- a/src/main/java/org/springframework/data/jpa/convert/threetenbp/ThreeTenBackPortJpaConverters.java
+++ b/src/main/java/org/springframework/data/jpa/convert/threetenbp/ThreeTenBackPortJpaConverters.java
@@ -44,7 +44,7 @@ import org.threeten.bp.ZoneId;
* package to be scanned on e.g. the {@link LocalContainerEntityManagerFactoryBean}.
*
* @author Oliver Gierke
- * @see http://www.threeten.org/threetenbp
+ * @see https://www.threeten.org/threetenbp
* @since 1.8
*/
public class ThreeTenBackPortJpaConverters {
diff --git a/src/main/java/org/springframework/data/jpa/repository/EntityGraph.java b/src/main/java/org/springframework/data/jpa/repository/EntityGraph.java
index 7f4318105..eafe2a45a 100644
--- a/src/main/java/org/springframework/data/jpa/repository/EntityGraph.java
+++ b/src/main/java/org/springframework/data/jpa/repository/EntityGraph.java
@@ -75,7 +75,7 @@ public @interface EntityGraph {
* by attribute nodes of the entity graph are treated as FetchType.EAGER and attributes that are not specified are
* treated according to their specified or default FetchType.
*
- * @see JPA 2.1
+ * @see JPA 2.1
* Specification: 3.7.4.2 Load Graph Semantics
*/
LOAD("javax.persistence.loadgraph"),
@@ -85,7 +85,7 @@ public @interface EntityGraph {
* by attribute nodes of the entity graph are treated as FetchType.EAGER and attributes that are not specified are
* treated as FetchType.LAZY
*
- * @see JPA 2.1
+ * @see JPA 2.1
* Specification: 3.7.4.1 Fetch Graph Semantics
*/
FETCH("javax.persistence.fetchgraph");
diff --git a/src/main/java/org/springframework/data/jpa/repository/config/AuditingBeanDefinitionParser.java b/src/main/java/org/springframework/data/jpa/repository/config/AuditingBeanDefinitionParser.java
index 2423c5d3e..d24d4815c 100644
--- a/src/main/java/org/springframework/data/jpa/repository/config/AuditingBeanDefinitionParser.java
+++ b/src/main/java/org/springframework/data/jpa/repository/config/AuditingBeanDefinitionParser.java
@@ -81,7 +81,7 @@ public class AuditingBeanDefinitionParser implements BeanDefinitionParser {
/**
* Copied code of SpringConfiguredBeanDefinitionParser until this class gets public.
*
- * @see SPR-7340
+ * @see SPR-7340
* @author Juergen Hoeller
*/
private static class SpringConfiguredBeanDefinitionParser implements BeanDefinitionParser {
diff --git a/src/main/java/org/springframework/data/jpa/repository/query/JpaQueryMethod.java b/src/main/java/org/springframework/data/jpa/repository/query/JpaQueryMethod.java
index b8cb666fd..44f549a40 100644
--- a/src/main/java/org/springframework/data/jpa/repository/query/JpaQueryMethod.java
+++ b/src/main/java/org/springframework/data/jpa/repository/query/JpaQueryMethod.java
@@ -58,7 +58,7 @@ public class JpaQueryMethod extends QueryMethod {
/**
* @see JPA
+ * "https://download.oracle.com/otn-pub/jcp/persistence-2.0-fr-eval-oth-JSpec/persistence-2_0-final-spec.pdf">JPA
* 2.0 Specification 2.2 Persistent Fields and Properties Page 23 - Top paragraph.
*/
private static final Set> NATIVE_ARRAY_TYPES;
diff --git a/src/main/java/org/springframework/data/jpa/repository/query/SimpleJpaQuery.java b/src/main/java/org/springframework/data/jpa/repository/query/SimpleJpaQuery.java
index 0e1ac52b5..381b8a45d 100644
--- a/src/main/java/org/springframework/data/jpa/repository/query/SimpleJpaQuery.java
+++ b/src/main/java/org/springframework/data/jpa/repository/query/SimpleJpaQuery.java
@@ -89,7 +89,7 @@ final class SimpleJpaQuery extends AbstractStringBasedJpaQuery {
} catch (RuntimeException e) {
// Needed as there's ambiguities in how an invalid query string shall be expressed by the persistence provider
- // http://java.net/projects/jpa-spec/lists/jsr338-experts/archive/2012-07/message/17
+ // https://java.net/projects/jpa-spec/lists/jsr338-experts/archive/2012-07/message/17
throw new IllegalArgumentException(String.format(errorMessage, arguments), e);
} finally {
diff --git a/src/main/java/org/springframework/data/jpa/support/MergingPersistenceUnitManager.java b/src/main/java/org/springframework/data/jpa/support/MergingPersistenceUnitManager.java
index f09894ed7..2e104964e 100644
--- a/src/main/java/org/springframework/data/jpa/support/MergingPersistenceUnitManager.java
+++ b/src/main/java/org/springframework/data/jpa/support/MergingPersistenceUnitManager.java
@@ -30,7 +30,7 @@ import org.springframework.orm.jpa.persistenceunit.MutablePersistenceUnitInfo;
* {@code persistence.xml} files into one. This is necessary to allow the declaration of entities in seperate modules.
*
* @author Oliver Gierke
- * @link http://jira.springframework.org/browse/SPR-2598
+ * @link https://jira.springframework.org/browse/SPR-2598
*/
public class MergingPersistenceUnitManager extends DefaultPersistenceUnitManager {
diff --git a/src/main/resources/license.txt b/src/main/resources/license.txt
index 7584e2dfe..77b5d3c40 100644
--- a/src/main/resources/license.txt
+++ b/src/main/resources/license.txt
@@ -207,7 +207,7 @@ similar licenses that require the source code and/or modifications to
source code to be made available (as would be noted above), you may obtain a
copy of the source code corresponding to the binaries for such open source
components and modifications thereto, if any, (the "Source Files"), by
-downloading the Source Files from http://www.springsource.org/download,
+downloading the Source Files from https://www.springsource.org/download,
or by sending a request, with your name and address to: VMware, Inc., 3401 Hillview
Avenue, Palo Alto, CA 94304, United States of America or email info@vmware.com. All
such requests should clearly specify: OPEN SOURCE FILES REQUEST, Attention General
diff --git a/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.0.xsd b/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.0.xsd
index f4de0a92e..eecdf1428 100644
--- a/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.0.xsd
+++ b/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.0.xsd
@@ -10,7 +10,7 @@
+ schemaLocation="https://www.springframework.org/schema/data/repository/spring-repository-1.0.xsd" />
diff --git a/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.1.xsd b/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.1.xsd
index a575da014..dcf7beece 100644
--- a/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.1.xsd
+++ b/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.1.xsd
@@ -10,7 +10,7 @@
+ schemaLocation="https://www.springframework.org/schema/data/repository/spring-repository-1.0.xsd" />
diff --git a/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.2.xsd b/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.2.xsd
index cf830619a..8e2a59594 100644
--- a/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.2.xsd
+++ b/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.2.xsd
@@ -10,7 +10,7 @@
+ schemaLocation="https://www.springframework.org/schema/data/repository/spring-repository.xsd" />
diff --git a/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.3.xsd b/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.3.xsd
index 7eac039c2..cb0306644 100644
--- a/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.3.xsd
+++ b/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.3.xsd
@@ -10,7 +10,7 @@
+ schemaLocation="https://www.springframework.org/schema/data/repository/spring-repository.xsd" />
diff --git a/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.8.xsd b/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.8.xsd
index ae5b2852b..e8cc13e59 100644
--- a/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.8.xsd
+++ b/src/main/resources/org/springframework/data/jpa/repository/config/spring-jpa-1.8.xsd
@@ -10,7 +10,7 @@
+ schemaLocation="https://www.springframework.org/schema/data/repository/spring-repository.xsd" />
diff --git a/src/main/resources/readme.txt b/src/main/resources/readme.txt
index 738a1f4ad..4f0324ce4 100644
--- a/src/main/resources/readme.txt
+++ b/src/main/resources/readme.txt
@@ -13,5 +13,5 @@ The reference manual and javadoc are located in the 'docs' directory.
ADDITIONAL RESOURCES:
-Spring Data Homepage: http://projects.spring.io/spring-data
-Spring Data JPA on Stackoverflow: http://stackoverflow.com/questions/tagged/spring-data-jpa
+Spring Data Homepage: https://projects.spring.io/spring-data
+Spring Data JPA on Stackoverflow: https://stackoverflow.com/questions/tagged/spring-data-jpa
diff --git a/src/test/java/org/springframework/data/jpa/repository/CustomHsqlHibernateJpaVendorAdaptor.java b/src/test/java/org/springframework/data/jpa/repository/CustomHsqlHibernateJpaVendorAdaptor.java
index 50430c12b..5a8735d37 100644
--- a/src/test/java/org/springframework/data/jpa/repository/CustomHsqlHibernateJpaVendorAdaptor.java
+++ b/src/test/java/org/springframework/data/jpa/repository/CustomHsqlHibernateJpaVendorAdaptor.java
@@ -24,7 +24,7 @@ import org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter;
/**
* Fix for missing type declarations for HSQL.
*
- * @see http://www.codesmell.org/blog/2008/12/hibernate-hsql-native-queries-and-booleans/
+ * @see https://www.codesmell.org/blog/2008/12/hibernate-hsql-native-queries-and-booleans/
* @author Oliver Gierke
*/
public class CustomHsqlHibernateJpaVendorAdaptor extends HibernateJpaVendorAdapter {