Created
May 24, 2016 10:01
-
-
Save HDBandit/1dffdedef5ce7afbb5cb9d766b99eaba to your computer and use it in GitHub Desktop.
This file contains hidden or 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