Skip to content

Instantly share code, notes, and snippets.

@r-winkler
Created March 4, 2018 19:29
Show Gist options
  • Save r-winkler/c41cd0572e58d27e5183a0df7fa709ee to your computer and use it in GitHub Desktop.
Save r-winkler/c41cd0572e58d27e5183a0df7fa709ee to your computer and use it in GitHub Desktop.
@Configuration
public class PersistenceConfiguration {
@Bean
@ConfigurationProperties(prefix="spring.datasource")
@Primary
public DataSource dataSource() {
return DataSourceBuilder.create().build();
}
@Bean
@ConfigurationProperties(prefix="flyway.datasource")
@FlywayDataSource
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