* moving SpringBootPersistenceApplication class to its own package * from com.baeldung to com.baeldung.logging to prevent it from loading contexts from other applications. * moving SpringBootPersistenceApplication class to its own package * from com.baeldung to com.baeldung.logging to prevent it from loading contexts from other applications. * Spring Data MongoDB - Configure Connection Ready for revision. * fixed tests to reflect article changes * BAEL-5657 * reverting BAEL-5657 * reverting BAEL-5657
14 lines
357 B
Java
14 lines
357 B
Java
package com.baeldung.logging;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
@SpringBootApplication
|
|
public class SpringBootPersistenceApplication {
|
|
|
|
public static void main(String ... args) {
|
|
SpringApplication.run(SpringBootPersistenceApplication.class, args);
|
|
}
|
|
|
|
}
|