Skip to content

Instantly share code, notes, and snippets.

@HDBandit
Created May 24, 2016 10:01
Show Gist options
  • Save HDBandit/1dffdedef5ce7afbb5cb9d766b99eaba to your computer and use it in GitHub Desktop.
Save HDBandit/1dffdedef5ce7afbb5cb9d766b99eaba to your computer and use it in GitHub Desktop.
// 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