11 lines
378 B
Java
11 lines
378 B
Java
|
|
package com.baeldung;
|
||
|
|
|
||
|
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
||
|
|
import org.springframework.boot.autoconfigure.mongo.embedded.EmbeddedMongoAutoConfiguration;
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
|
||
|
|
@Configuration
|
||
|
|
@EnableAutoConfiguration(exclude = { EmbeddedMongoAutoConfiguration.class })
|
||
|
|
public class TestMongoConfig {
|
||
|
|
|
||
|
|
}
|