Created
May 24, 2016 10:01
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// we have to exclude the default configuration, because we want to provide | |
// our multi tenant data source configuration. | |
@SpringBootApplication(exclude = DataSourceAutoConfiguration.class) | |
public class App { | |
public static void main(String[] args) { | |
SpringApplication.run(App.class, args); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment