Skip to content

Commit 6930c72

Browse files
committed
DATAMONGO-2309 - Fix NoHTTP errors.
1 parent 611cfe9 commit 6930c72

File tree

74 files changed

+208
-208
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+208
-208
lines changed

CODE_OF_CONDUCT.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ Instances of abusive, harassing, or otherwise unacceptable behavior may be repor
2424
All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances.
2525
Maintainers are obligated to maintain confidentiality with regard to the reporter of an incident.
2626

27-
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/].
27+
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/].

spring-data-mongodb-benchmarks/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Benchmarks
22

3-
Benchmarks are based on [JMH](http://openjdk.java.net/projects/code-tools/jmh/).
3+
Benchmarks are based on [JMH](https://openjdk.java.net/projects/code-tools/jmh/).
44

55
# Running Benchmarks
66

spring-data-mongodb-cross-store/src/test/resources/META-INF/spring/applicationContext.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
xmlns:jdbc="http://www.springframework.org/schema/jdbc"
66
xmlns:context="http://www.springframework.org/schema/context"
77
xmlns:mongo="http://www.springframework.org/schema/data/mongo"
8-
xsi:schemaLocation="http://www.springframework.org/schema/data/mongo http://www.springframework.org/schema/data/mongo/spring-mongo.xsd
9-
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
10-
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
11-
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
12-
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
8+
xsi:schemaLocation="http://www.springframework.org/schema/data/mongo https://www.springframework.org/schema/data/mongo/spring-mongo.xsd
9+
http://www.springframework.org/schema/jdbc https://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
10+
http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans-3.0.xsd
11+
http://www.springframework.org/schema/tx https://www.springframework.org/schema/tx/spring-tx-3.0.xsd
12+
http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context-3.0.xsd">
1313

1414
<context:spring-configured/>
1515

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/MongoOperations.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1141,7 +1141,7 @@ <S, T> T findAndReplace(Query query, S replacement, FindAndReplaceOptions option
11411141
* If you object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a
11421142
* String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your
11431143
* property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See
1144-
* <a href="http://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation" > Spring's Type
1144+
* <a href="https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation" > Spring's Type
11451145
* Conversion"</a> for more details.
11461146
* <p/>
11471147
* <p/>
@@ -1203,7 +1203,7 @@ <S, T> T findAndReplace(Query query, S replacement, FindAndReplaceOptions option
12031203
* If you object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a
12041204
* String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your
12051205
* property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See
1206-
* <a href="http://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation" > Spring's Type
1206+
* <a href="https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation" > Spring's Type
12071207
* Conversion"</a> for more details.
12081208
*
12091209
* @param objectToSave the object to store in the collection. Must not be {@literal null}.
@@ -1221,7 +1221,7 @@ <S, T> T findAndReplace(Query query, S replacement, FindAndReplaceOptions option
12211221
* If you object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a
12221222
* String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your
12231223
* property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See <a
1224-
* http://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation">Spring's Type
1224+
* https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation">Spring's Type
12251225
* Conversion"</a> for more details.
12261226
*
12271227
* @param objectToSave the object to store in the collection. Must not be {@literal null}.

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/ReactiveMongoOperations.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
* @since 2.0
6767
* @see Flux
6868
* @see Mono
69-
* @see <a href="http://projectreactor.io/docs/">Project Reactor</a>
69+
* @see <a href="https://projectreactor.io/docs/">Project Reactor</a>
7070
*/
7171
public interface ReactiveMongoOperations extends ReactiveFluentMongoOperations {
7272

@@ -927,7 +927,7 @@ <S, T> Mono<T> findAndReplace(Query query, S replacement, FindAndReplaceOptions
927927
* If you object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a
928928
* String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your
929929
* property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See
930-
* <a href="http://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation" > Spring's Type
930+
* <a href="https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation" > Spring's Type
931931
* Conversion"</a> for more details.
932932
* <p/>
933933
* <p/>
@@ -987,7 +987,7 @@ <S, T> Mono<T> findAndReplace(Query query, S replacement, FindAndReplaceOptions
987987
* If you object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a
988988
* String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your
989989
* property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See
990-
* <a href="http://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation" > Spring's Type
990+
* <a href="https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation" > Spring's Type
991991
* Conversion"</a> for more details.
992992
* <p/>
993993
* <p/>
@@ -1035,7 +1035,7 @@ <S, T> Mono<T> findAndReplace(Query query, S replacement, FindAndReplaceOptions
10351035
* If you object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a
10361036
* String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your
10371037
* property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See
1038-
* <a href="http://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation" > Spring's Type
1038+
* <a href="https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation" > Spring's Type
10391039
* Conversion"</a> for more details.
10401040
*
10411041
* @param objectToSave the object to store in the collection. Must not be {@literal null}.
@@ -1053,7 +1053,7 @@ <S, T> Mono<T> findAndReplace(Query query, S replacement, FindAndReplaceOptions
10531053
* If you object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a
10541054
* String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your
10551055
* property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See <a
1056-
* http://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation">Spring's Type
1056+
* https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation">Spring's Type
10571057
* Conversion"</a> for more details.
10581058
*
10591059
* @param objectToSave the object to store in the collection. Must not be {@literal null}.
@@ -1072,7 +1072,7 @@ <S, T> Mono<T> findAndReplace(Query query, S replacement, FindAndReplaceOptions
10721072
* If you object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a
10731073
* String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your
10741074
* property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See
1075-
* <a href="http://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation" > Spring's Type
1075+
* <a href="https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation" > Spring's Type
10761076
* Conversion"</a> for more details.
10771077
*
10781078
* @param objectToSave the object to store in the collection. Must not be {@literal null}.
@@ -1090,7 +1090,7 @@ <S, T> Mono<T> findAndReplace(Query query, S replacement, FindAndReplaceOptions
10901090
* If you object has an "Id' property, it will be set with the generated Id from MongoDB. If your Id property is a
10911091
* String then MongoDB ObjectId will be used to populate that string. Otherwise, the conversion from ObjectId to your
10921092
* property type will be handled by Spring's BeanWrapper class that leverages Type Conversion API. See <a
1093-
* http://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation">Spring's Type
1093+
* https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#validation">Spring's Type
10941094
* Conversion"</a> for more details.
10951095
*
10961096
* @param objectToSave the object to store in the collection. Must not be {@literal null}.

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/AggregationSpELExpression.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/**
2222
* An {@link AggregationExpression} that renders a MongoDB Aggregation Framework expression from the AST of a
23-
* <a href="http://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#expressions">SpEL
23+
* <a href="https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#expressions">SpEL
2424
* expression</a>. <br />
2525
* <br />
2626
* <strong>Samples:</strong> <br />

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/query/Collation.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,7 @@ public Alternate space() {
721721
/**
722722
* ICU locale abstraction for usage with MongoDB {@link Collation}.
723723
*
724-
* @see <a href="http://site.icu-project.org">ICU - International Components for Unicode</a>
724+
* @see <a href="https://site.icu-project.org">ICU - International Components for Unicode</a>
725725
* @since 2.0
726726
*/
727727
@RequiredArgsConstructor(access = AccessLevel.PRIVATE)

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/support/MongodbDocumentSerializer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* </p>
4040
* <p>
4141
* Original implementation source {@link com.querydsl.mongodb.MongodbSerializer} by {@literal The Querydsl Team}
42-
* (<a href="http://www.querydsl.com/team">http://www.querydsl.com/team</a>) licensed under the Apache License, Version
42+
* (<a href="https://www.querydsl.com/team">https://www.querydsl.com/team</a>) licensed under the Apache License, Version
4343
* 2.0.
4444
* </p>
4545
* Modified to use {@link Document} instead of {@link com.mongodb.DBObject}, updated nullable types and code format. Use

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/support/QuerydslAbstractMongodbQuery.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* {@code QuerydslAbstractMongodbQuery} provides a base class for general Querydsl query implementation.
3535
* <p>
3636
* Original implementation source {@link com.querydsl.mongodb.AbstractMongodbQuery} by {@literal The Querydsl Team}
37-
* (<a href="http://www.querydsl.com/team">http://www.querydsl.com/team</a>) licensed under the Apache License, Version
37+
* (<a href="https://www.querydsl.com/team">https://www.querydsl.com/team</a>) licensed under the Apache License, Version
3838
* 2.0.
3939
* </p>
4040
* Modified for usage with {@link MongodbDocumentSerializer}.

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/support/QuerydslAnyEmbeddedBuilder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* {@code QuerydslAnyEmbeddedBuilder} is a builder for constraints on embedded objects.
2828
* <p>
2929
* Original implementation source {@link com.querydsl.mongodb.AnyEmbeddedBuilder} by {@literal The Querydsl Team}
30-
* (<a href="http://www.querydsl.com/team">http://www.querydsl.com/team</a>) licensed under the Apache License, Version
30+
* (<a href="https://www.querydsl.com/team">https://www.querydsl.com/team</a>) licensed under the Apache License, Version
3131
* 2.0.
3232
* </p>
3333
* Modified for usage with {@link QuerydslAbstractMongodbQuery}.

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository/support/QuerydslJoinBuilder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* {@code QuerydslJoinBuilder} is a builder for join constraints.
2626
* <p>
2727
* Original implementation source {@link com.querydsl.mongodb.JoinBuilder} by {@literal The Querydsl Team}
28-
* (<a href="http://www.querydsl.com/team">http://www.querydsl.com/team</a>) licensed under the Apache License, Version
28+
* (<a href="https://www.querydsl.com/team">https://www.querydsl.com/team</a>) licensed under the Apache License, Version
2929
* 2.0.
3030
* </p>
3131
* Modified for usage with {@link QuerydslAbstractMongodbQuery}.
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
http\://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd=org/springframework/data/mongodb/config/spring-mongo-1.0.xsd
2-
http\://www.springframework.org/schema/data/mongo/spring-mongo-1.1.xsd=org/springframework/data/mongodb/config/spring-mongo-1.1.xsd
3-
http\://www.springframework.org/schema/data/mongo/spring-mongo-1.2.xsd=org/springframework/data/mongodb/config/spring-mongo-1.2.xsd
4-
http\://www.springframework.org/schema/data/mongo/spring-mongo-1.3.xsd=org/springframework/data/mongodb/config/spring-mongo-1.3.xsd
5-
http\://www.springframework.org/schema/data/mongo/spring-mongo-1.4.xsd=org/springframework/data/mongodb/config/spring-mongo-1.4.xsd
6-
http\://www.springframework.org/schema/data/mongo/spring-mongo-1.5.xsd=org/springframework/data/mongodb/config/spring-mongo-1.5.xsd
7-
http\://www.springframework.org/schema/data/mongo/spring-mongo-1.7.xsd=org/springframework/data/mongodb/config/spring-mongo-1.7.xsd
8-
http\://www.springframework.org/schema/data/mongo/spring-mongo-1.8.xsd=org/springframework/data/mongodb/config/spring-mongo-1.8.xsd
9-
http\://www.springframework.org/schema/data/mongo/spring-mongo-1.10.xsd=org/springframework/data/mongodb/config/spring-mongo-1.10.xsd
10-
http\://www.springframework.org/schema/data/mongo/spring-mongo-1.10.2.xsd=org/springframework/data/mongodb/config/spring-mongo-1.10.2.xsd
11-
http\://www.springframework.org/schema/data/mongo/spring-mongo-2.0.xsd=org/springframework/data/mongodb/config/spring-mongo-2.0.xsd
12-
http\://www.springframework.org/schema/data/mongo/spring-mongo.xsd=org/springframework/data/mongodb/config/spring-mongo-2.0.xsd
1+
https\://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd=org/springframework/data/mongodb/config/spring-mongo-1.0.xsd
2+
https\://www.springframework.org/schema/data/mongo/spring-mongo-1.1.xsd=org/springframework/data/mongodb/config/spring-mongo-1.1.xsd
3+
https\://www.springframework.org/schema/data/mongo/spring-mongo-1.2.xsd=org/springframework/data/mongodb/config/spring-mongo-1.2.xsd
4+
https\://www.springframework.org/schema/data/mongo/spring-mongo-1.3.xsd=org/springframework/data/mongodb/config/spring-mongo-1.3.xsd
5+
https\://www.springframework.org/schema/data/mongo/spring-mongo-1.4.xsd=org/springframework/data/mongodb/config/spring-mongo-1.4.xsd
6+
https\://www.springframework.org/schema/data/mongo/spring-mongo-1.5.xsd=org/springframework/data/mongodb/config/spring-mongo-1.5.xsd
7+
https\://www.springframework.org/schema/data/mongo/spring-mongo-1.7.xsd=org/springframework/data/mongodb/config/spring-mongo-1.7.xsd
8+
https\://www.springframework.org/schema/data/mongo/spring-mongo-1.8.xsd=org/springframework/data/mongodb/config/spring-mongo-1.8.xsd
9+
https\://www.springframework.org/schema/data/mongo/spring-mongo-1.10.xsd=org/springframework/data/mongodb/config/spring-mongo-1.10.xsd
10+
https\://www.springframework.org/schema/data/mongo/spring-mongo-1.10.2.xsd=org/springframework/data/mongodb/config/spring-mongo-1.10.2.xsd
11+
https\://www.springframework.org/schema/data/mongo/spring-mongo-2.0.xsd=org/springframework/data/mongodb/config/spring-mongo-2.0.xsd
12+
https\://www.springframework.org/schema/data/mongo/spring-mongo.xsd=org/springframework/data/mongodb/config/spring-mongo-2.0.xsd

spring-data-mongodb/src/main/resources/org/springframework/data/mongodb/config/spring-mongo-1.0.xsd

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<xsd:import namespace="http://www.springframework.org/schema/tool" />
1414
<xsd:import namespace="http://www.springframework.org/schema/context" />
1515
<xsd:import namespace="http://www.springframework.org/schema/data/repository"
16-
schemaLocation="http://www.springframework.org/schema/data/repository/spring-repository-1.0.xsd" />
16+
schemaLocation="https://www.springframework.org/schema/data/repository/spring-repository-1.0.xsd" />
1717

1818
<xsd:element name="mongo" type="mongoType">
1919
<xsd:annotation>

spring-data-mongodb/src/main/resources/org/springframework/data/mongodb/config/spring-mongo-1.1.xsd

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<xsd:import namespace="http://www.springframework.org/schema/tool" />
1414
<xsd:import namespace="http://www.springframework.org/schema/context" />
1515
<xsd:import namespace="http://www.springframework.org/schema/data/repository"
16-
schemaLocation="http://www.springframework.org/schema/data/repository/spring-repository.xsd" />
16+
schemaLocation="https://www.springframework.org/schema/data/repository/spring-repository.xsd" />
1717

1818
<xsd:element name="mongo" type="mongoType">
1919
<xsd:annotation>

spring-data-mongodb/src/main/resources/org/springframework/data/mongodb/config/spring-mongo-1.10.2.xsd

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<xsd:import namespace="http://www.springframework.org/schema/tool" />
1414
<xsd:import namespace="http://www.springframework.org/schema/context" />
1515
<xsd:import namespace="http://www.springframework.org/schema/data/repository"
16-
schemaLocation="http://www.springframework.org/schema/data/repository/spring-repository.xsd" />
16+
schemaLocation="https://www.springframework.org/schema/data/repository/spring-repository.xsd" />
1717

1818
<xsd:element name="mongo" type="mongoType">
1919
<xsd:annotation>

spring-data-mongodb/src/main/resources/org/springframework/data/mongodb/config/spring-mongo-1.10.xsd

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<xsd:import namespace="http://www.springframework.org/schema/tool" />
1414
<xsd:import namespace="http://www.springframework.org/schema/context" />
1515
<xsd:import namespace="http://www.springframework.org/schema/data/repository"
16-
schemaLocation="http://www.springframework.org/schema/data/repository/spring-repository.xsd" />
16+
schemaLocation="https://www.springframework.org/schema/data/repository/spring-repository.xsd" />
1717

1818
<xsd:element name="mongo" type="mongoType">
1919
<xsd:annotation>

spring-data-mongodb/src/main/resources/org/springframework/data/mongodb/config/spring-mongo-1.2.xsd

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<xsd:import namespace="http://www.springframework.org/schema/tool" />
1414
<xsd:import namespace="http://www.springframework.org/schema/context" />
1515
<xsd:import namespace="http://www.springframework.org/schema/data/repository"
16-
schemaLocation="http://www.springframework.org/schema/data/repository/spring-repository.xsd" />
16+
schemaLocation="https://www.springframework.org/schema/data/repository/spring-repository.xsd" />
1717

1818
<xsd:element name="mongo" type="mongoType">
1919
<xsd:annotation>

spring-data-mongodb/src/main/resources/org/springframework/data/mongodb/config/spring-mongo-1.3.xsd

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<xsd:import namespace="http://www.springframework.org/schema/tool" />
1414
<xsd:import namespace="http://www.springframework.org/schema/context" />
1515
<xsd:import namespace="http://www.springframework.org/schema/data/repository"
16-
schemaLocation="http://www.springframework.org/schema/data/repository/spring-repository.xsd" />
16+
schemaLocation="https://www.springframework.org/schema/data/repository/spring-repository.xsd" />
1717

1818
<xsd:element name="mongo" type="mongoType">
1919
<xsd:annotation>

spring-data-mongodb/src/main/resources/org/springframework/data/mongodb/config/spring-mongo-1.4.xsd

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<xsd:import namespace="http://www.springframework.org/schema/tool" />
1414
<xsd:import namespace="http://www.springframework.org/schema/context" />
1515
<xsd:import namespace="http://www.springframework.org/schema/data/repository"
16-
schemaLocation="http://www.springframework.org/schema/data/repository/spring-repository.xsd" />
16+
schemaLocation="https://www.springframework.org/schema/data/repository/spring-repository.xsd" />
1717

1818
<xsd:element name="mongo" type="mongoType">
1919
<xsd:annotation>

spring-data-mongodb/src/main/resources/org/springframework/data/mongodb/config/spring-mongo-1.5.xsd

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<xsd:import namespace="http://www.springframework.org/schema/tool" />
1414
<xsd:import namespace="http://www.springframework.org/schema/context" />
1515
<xsd:import namespace="http://www.springframework.org/schema/data/repository"
16-
schemaLocation="http://www.springframework.org/schema/data/repository/spring-repository.xsd" />
16+
schemaLocation="https://www.springframework.org/schema/data/repository/spring-repository.xsd" />
1717

1818
<xsd:element name="mongo" type="mongoType">
1919
<xsd:annotation>

0 commit comments

Comments
 (0)