Fix ordering problem with Mongo autoconfig

This commit is contained in:
Dave Syer
2014-05-20 17:17:08 +01:00
parent 3328a30b7b
commit 233a2e8fb5

View File

@@ -19,6 +19,7 @@ package org.springframework.boot.autoconfigure.mongo;
import java.net.UnknownHostException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
@@ -47,6 +48,7 @@ import com.mongodb.Mongo;
*/
@Configuration
@ConditionalOnClass({ Mongo.class, MongoTemplate.class })
@AutoConfigureAfter(MongoAutoConfiguration.class)
public class MongoDataAutoConfiguration {
@Autowired