Make an explicit link to MongoDataAutoConfiguration

Closes gh-12001
pull/12004/head
Stephane Nicoll 7 years ago
parent 7473642f58
commit 9aa751a949

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2017 the original author or authors. * Copyright 2012-2018 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -48,7 +48,7 @@ import org.springframework.data.mongodb.core.convert.MongoConverter;
@Configuration @Configuration
@ConditionalOnClass({ MongoClient.class, ReactiveMongoTemplate.class }) @ConditionalOnClass({ MongoClient.class, ReactiveMongoTemplate.class })
@EnableConfigurationProperties(MongoProperties.class) @EnableConfigurationProperties(MongoProperties.class)
@AutoConfigureAfter(MongoReactiveAutoConfiguration.class) @AutoConfigureAfter({ MongoReactiveAutoConfiguration.class, MongoDataAutoConfiguration.class })
public class MongoReactiveDataAutoConfiguration { public class MongoReactiveDataAutoConfiguration {
private final MongoProperties properties; private final MongoProperties properties;

Loading…
Cancel
Save