Skip to content

Commit 9b02897

Browse files
christophstroblmp911de
authored andcommitted
Add configuration support for MongoDB ServerApiVersion.
Introduce FactoryBean and required options to set the ServerAPI. Update namespace xsd and parsing. Closes: #3820 Original pull request: #3821.
1 parent 99203b3 commit 9b02897

File tree

8 files changed

+1114
-4
lines changed

8 files changed

+1114
-4
lines changed

spring-data-mongodb/src/main/java/org/springframework/data/mongodb/config/MongoParsingUtils.java

+17
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,12 @@
2222
import org.springframework.beans.factory.config.BeanDefinition;
2323
import org.springframework.beans.factory.config.CustomEditorConfigurer;
2424
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
25+
import org.springframework.beans.factory.support.BeanDefinitionValidationException;
2526
import org.springframework.beans.factory.support.ManagedMap;
2627
import org.springframework.beans.factory.xml.BeanDefinitionParser;
2728
import org.springframework.data.mongodb.core.MongoClientSettingsFactoryBean;
29+
import org.springframework.data.mongodb.core.MongoServerApiFactoryBean;
30+
import org.springframework.util.StringUtils;
2831
import org.springframework.util.xml.DomUtils;
2932
import org.w3c.dom.Element;
3033

@@ -112,6 +115,20 @@ public static boolean parseMongoClientSettings(Element element, BeanDefinitionBu
112115
// Field level encryption
113116
setPropertyReference(clientOptionsDefBuilder, settingsElement, "encryption-settings-ref", "autoEncryptionSettings");
114117

118+
// ServerAPI
119+
if (StringUtils.hasText(settingsElement.getAttribute("server-api-version"))) {
120+
121+
MongoServerApiFactoryBean serverApiFactoryBean = new MongoServerApiFactoryBean();
122+
serverApiFactoryBean.setVersion(settingsElement.getAttribute("server-api-version"));
123+
try {
124+
clientOptionsDefBuilder.addPropertyValue("serverApi", serverApiFactoryBean.getObject());
125+
} catch (Exception exception) {
126+
throw new BeanDefinitionValidationException("Non parsable server-api.", exception);
127+
}
128+
} else {
129+
setPropertyReference(clientOptionsDefBuilder, settingsElement, "server-api-ref", "serverApi");
130+
}
131+
115132
// and the rest
116133

117134
mongoClientBuilder.addPropertyValue("mongoClientSettings", clientOptionsDefBuilder.getBeanDefinition());

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

+15-2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
import com.mongodb.ReadConcern;
3737
import com.mongodb.ReadPreference;
3838
import com.mongodb.ServerAddress;
39+
import com.mongodb.ServerApi;
3940
import com.mongodb.WriteConcern;
4041
import com.mongodb.connection.ClusterConnectionMode;
4142
import com.mongodb.connection.ClusterType;
@@ -113,6 +114,7 @@ public class MongoClientSettingsFactoryBean extends AbstractFactoryBean<MongoCli
113114
// encryption and retry
114115

115116
private @Nullable AutoEncryptionSettings autoEncryptionSettings;
117+
private @Nullable ServerApi serverApi;
116118

117119
/**
118120
* @param socketConnectTimeoutMS in msec
@@ -395,6 +397,15 @@ public void setAutoEncryptionSettings(@Nullable AutoEncryptionSettings autoEncry
395397
this.autoEncryptionSettings = autoEncryptionSettings;
396398
}
397399

400+
/**
401+
* @param serverApi can be {@literal null}.
402+
* @see MongoClientSettings.Builder#serverApi(ServerApi)
403+
* @since 3.3
404+
*/
405+
public void setServerApi(@Nullable ServerApi serverApi) {
406+
this.serverApi = serverApi;
407+
}
408+
398409
@Override
399410
public Class<?> getObjectType() {
400411
return MongoClientSettings.class;
@@ -476,9 +487,11 @@ protected MongoClientSettings createInstance() {
476487
if (retryWrites != null) {
477488
builder = builder.retryWrites(retryWrites);
478489
}
479-
480490
if (uUidRepresentation != null) {
481-
builder.uuidRepresentation(uUidRepresentation);
491+
builder = builder.uuidRepresentation(uUidRepresentation);
492+
}
493+
if (serverApi != null) {
494+
builder = builder.serverApi(serverApi);
482495
}
483496

484497
return builder.build();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
/*
2+
* Copyright 2021 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.springframework.data.mongodb.core;
17+
18+
import org.springframework.beans.factory.FactoryBean;
19+
import org.springframework.lang.Nullable;
20+
import org.springframework.util.ObjectUtils;
21+
22+
import com.mongodb.ServerApi;
23+
import com.mongodb.ServerApi.Builder;
24+
import com.mongodb.ServerApiVersion;
25+
26+
/**
27+
* {@link FactoryBean} for creating {@link ServerApi} using the {@link ServerApi.Builder}.
28+
*
29+
* @author Christoph Strobl
30+
* @since 3.3
31+
*/
32+
public class MongoServerApiFactoryBean implements FactoryBean<ServerApi> {
33+
34+
private String version;
35+
private @Nullable Boolean deprecationErrors;
36+
private @Nullable Boolean strict;
37+
38+
/**
39+
* @param version the version string either as the enum name or the server version value.
40+
* @see ServerApiVersion
41+
*/
42+
public void setVersion(String version) {
43+
this.version = version;
44+
}
45+
46+
/**
47+
* @param deprecationErrors
48+
* @see ServerApi.Builder#deprecationErrors(boolean)
49+
*/
50+
public void setDeprecationErrors(@Nullable Boolean deprecationErrors) {
51+
this.deprecationErrors = deprecationErrors;
52+
}
53+
54+
/**
55+
* @param strict
56+
* @see ServerApi.Builder#strict(boolean)
57+
*/
58+
public void setStrict(@Nullable Boolean strict) {
59+
this.strict = strict;
60+
}
61+
62+
@Nullable
63+
@Override
64+
public ServerApi getObject() throws Exception {
65+
66+
Builder builder = ServerApi.builder().version(version());
67+
68+
if (deprecationErrors != null) {
69+
builder = builder.deprecationErrors(deprecationErrors);
70+
}
71+
if (strict != null) {
72+
builder = builder.strict(strict);
73+
}
74+
return builder.build();
75+
}
76+
77+
@Nullable
78+
@Override
79+
public Class<?> getObjectType() {
80+
return ServerApi.class;
81+
}
82+
83+
private ServerApiVersion version() {
84+
try {
85+
// lookup by name eg. 'V1'
86+
return ObjectUtils.caseInsensitiveValueOf(ServerApiVersion.values(), version);
87+
} catch (IllegalArgumentException e) {
88+
// or just the version number, eg. just '1'
89+
return ServerApiVersion.findByValue(version);
90+
}
91+
}
92+
}

spring-data-mongodb/src/main/resources/META-INF/spring.schemas

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ http\://www.springframework.org/schema/data/mongo/spring-mongo-1.10.2.xsd=org/sp
1111
http\://www.springframework.org/schema/data/mongo/spring-mongo-2.0.xsd=org/springframework/data/mongodb/config/spring-mongo-2.0.xsd
1212
http\://www.springframework.org/schema/data/mongo/spring-mongo-2.2.xsd=org/springframework/data/mongodb/config/spring-mongo-2.0.xsd
1313
http\://www.springframework.org/schema/data/mongo/spring-mongo-3.0.xsd=org/springframework/data/mongodb/config/spring-mongo-3.0.xsd
14-
http\://www.springframework.org/schema/data/mongo/spring-mongo.xsd=org/springframework/data/mongodb/config/spring-mongo-3.0.xsd
14+
http\://www.springframework.org/schema/data/mongo/spring-mongo-3.3.xsd=org/springframework/data/mongodb/config/spring-mongo-3.3.xsd
15+
http\://www.springframework.org/schema/data/mongo/spring-mongo.xsd=org/springframework/data/mongodb/config/spring-mongo-3.3.xsd
1516
https\://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd=org/springframework/data/mongodb/config/spring-mongo-1.0.xsd
1617
https\://www.springframework.org/schema/data/mongo/spring-mongo-1.1.xsd=org/springframework/data/mongodb/config/spring-mongo-1.1.xsd
1718
https\://www.springframework.org/schema/data/mongo/spring-mongo-1.2.xsd=org/springframework/data/mongodb/config/spring-mongo-1.2.xsd
@@ -25,4 +26,5 @@ https\://www.springframework.org/schema/data/mongo/spring-mongo-1.10.2.xsd=org/s
2526
https\://www.springframework.org/schema/data/mongo/spring-mongo-2.0.xsd=org/springframework/data/mongodb/config/spring-mongo-2.0.xsd
2627
https\://www.springframework.org/schema/data/mongo/spring-mongo-2.2.xsd=org/springframework/data/mongodb/config/spring-mongo-2.2.xsd
2728
https\://www.springframework.org/schema/data/mongo/spring-mongo-3.0.xsd=org/springframework/data/mongodb/config/spring-mongo-3.0.xsd
28-
https\://www.springframework.org/schema/data/mongo/spring-mongo.xsd=org/springframework/data/mongodb/config/spring-mongo-3.0.xsd
29+
https\://www.springframework.org/schema/data/mongo/spring-mongo-3.3.xsd=org/springframework/data/mongodb/config/spring-mongo-3.3.xsd
30+
https\://www.springframework.org/schema/data/mongo/spring-mongo.xsd=org/springframework/data/mongodb/config/spring-mongo-3.3.xsd

0 commit comments

Comments
 (0)