Skip to content

Instantly share code, notes, and snippets.

@andersonkxiass
Last active April 23, 2017 21:17
Show Gist options
  • Save andersonkxiass/751d623e4a36be71d1fd36ed1e0662e6 to your computer and use it in GitHub Desktop.
Save andersonkxiass/751d623e4a36be71d1fd36ed1e0662e6 to your computer and use it in GitHub Desktop.
Database configs
@Configuration
@PropertySource({ "classpath:application.properties" })
public class DatabaseConfig {
@Bean
@Primary
@ConfigurationProperties(prefix = "spring.datasource")
public DataSource dataSource() {
return DataSourceBuilder.create().build();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment