Skip to content

Instantly share code, notes, and snippets.

@HDBandit
Created May 24, 2016 10:01
// 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