|
@ -4,15 +4,14 @@ import com.zaxxer.hikari.HikariDataSource; |
|
|
import org.slf4j.Logger; |
|
|
import org.slf4j.Logger; |
|
|
import org.slf4j.LoggerFactory; |
|
|
import org.slf4j.LoggerFactory; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
|
import org.springframework.boot.autoconfigure.domain.EntityScan; |
|
|
import org.springframework.boot.autoconfigure.jdbc.DataSourceProperties; |
|
|
import org.springframework.boot.autoconfigure.jdbc.DataSourceProperties; |
|
|
import org.springframework.boot.context.properties.ConfigurationProperties; |
|
|
import org.springframework.boot.context.properties.ConfigurationProperties; |
|
|
import org.springframework.context.annotation.Bean; |
|
|
import org.springframework.context.annotation.*; |
|
|
import org.springframework.context.annotation.Configuration; |
|
|
|
|
|
import org.springframework.context.annotation.Primary; |
|
|
|
|
|
import org.springframework.context.annotation.Scope; |
|
|
|
|
|
import org.springframework.core.env.Environment; |
|
|
import org.springframework.core.env.Environment; |
|
|
import org.springframework.data.jpa.repository.config.EnableJpaRepositories; |
|
|
import org.springframework.data.jpa.repository.config.EnableJpaRepositories; |
|
|
import org.springframework.jdbc.core.JdbcTemplate; |
|
|
import org.springframework.jdbc.core.JdbcTemplate; |
|
|
|
|
|
import org.springframework.orm.hibernate5.LocalSessionFactoryBean; |
|
|
import org.springframework.orm.jpa.JpaTransactionManager; |
|
|
import org.springframework.orm.jpa.JpaTransactionManager; |
|
|
import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean; |
|
|
import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean; |
|
|
import org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter; |
|
|
import org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter; |
|
@ -25,7 +24,7 @@ import java.util.HashMap; |
|
|
* конфигурация которая используется для создание ждбсТеплейта который будет доступен как для чтения так и для записи |
|
|
* конфигурация которая используется для создание ждбсТеплейта который будет доступен как для чтения так и для записи |
|
|
*/ |
|
|
*/ |
|
|
@Configuration |
|
|
@Configuration |
|
|
@EnableJpaRepositories(basePackages = "app.entities.dummy.rw", entityManagerFactoryRef = "RwEntityManager", transactionManagerRef = "RwTransactionManager") |
|
|
@EnableJpaRepositories(basePackages = "app", entityManagerFactoryRef = "RwEntityManager", transactionManagerRef = "RwTransactionManager") |
|
|
public class DbRwConfigurarion implements DbConfiguration{ |
|
|
public class DbRwConfigurarion implements DbConfiguration{ |
|
|
|
|
|
|
|
|
@Autowired |
|
|
@Autowired |
|
@ -36,12 +35,14 @@ public class DbRwConfigurarion implements DbConfiguration{ |
|
|
@Bean(name = "RwDataSourceProperties") |
|
|
@Bean(name = "RwDataSourceProperties") |
|
|
@Scope(value = "singleton") |
|
|
@Scope(value = "singleton") |
|
|
@ConfigurationProperties(prefix = "backend.db.rw") |
|
|
@ConfigurationProperties(prefix = "backend.db.rw") |
|
|
|
|
|
@Primary |
|
|
public DataSourceProperties DataSourceProperties() { |
|
|
public DataSourceProperties DataSourceProperties() { |
|
|
return new DataSourceProperties(); |
|
|
return new DataSourceProperties(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@Bean(name = "RwDataSource") |
|
|
@Bean(name = "RwDataSource") |
|
|
@Scope(value = "singleton") |
|
|
@Scope(value = "singleton") |
|
|
|
|
|
@Primary |
|
|
public DataSource DataSource() { |
|
|
public DataSource DataSource() { |
|
|
HikariDataSource dataSource = DataSourceProperties().initializeDataSourceBuilder().type(HikariDataSource.class).build(); |
|
|
HikariDataSource dataSource = DataSourceProperties().initializeDataSourceBuilder().type(HikariDataSource.class).build(); |
|
|
dataSource.setReadOnly(false); |
|
|
dataSource.setReadOnly(false); |
|
@ -50,10 +51,11 @@ public class DbRwConfigurarion implements DbConfiguration{ |
|
|
|
|
|
|
|
|
@Bean(name = "RwEntityManager") |
|
|
@Bean(name = "RwEntityManager") |
|
|
@Scope(value = "singleton") |
|
|
@Scope(value = "singleton") |
|
|
|
|
|
@Primary |
|
|
public LocalContainerEntityManagerFactoryBean EntityManager() { |
|
|
public LocalContainerEntityManagerFactoryBean EntityManager() { |
|
|
LocalContainerEntityManagerFactoryBean entityManager = new LocalContainerEntityManagerFactoryBean(); |
|
|
LocalContainerEntityManagerFactoryBean entityManager = new LocalContainerEntityManagerFactoryBean(); |
|
|
entityManager.setDataSource(DataSource()); |
|
|
entityManager.setDataSource(DataSource()); |
|
|
entityManager.setPackagesToScan("app.entities.dummy.rw"); |
|
|
entityManager.setPackagesToScan("app"); |
|
|
HibernateJpaVendorAdapter vendorAdapter = new HibernateJpaVendorAdapter(); |
|
|
HibernateJpaVendorAdapter vendorAdapter = new HibernateJpaVendorAdapter(); |
|
|
entityManager.setJpaVendorAdapter(vendorAdapter); |
|
|
entityManager.setJpaVendorAdapter(vendorAdapter); |
|
|
HashMap<String, Object> properties = new HashMap<>(); |
|
|
HashMap<String, Object> properties = new HashMap<>(); |
|
@ -64,6 +66,7 @@ public class DbRwConfigurarion implements DbConfiguration{ |
|
|
|
|
|
|
|
|
@Bean(name = "RwTransactionManager") |
|
|
@Bean(name = "RwTransactionManager") |
|
|
@Scope(value = "singleton") |
|
|
@Scope(value = "singleton") |
|
|
|
|
|
@Primary |
|
|
public PlatformTransactionManager TransactionManager() { |
|
|
public PlatformTransactionManager TransactionManager() { |
|
|
JpaTransactionManager transactionManager = new JpaTransactionManager(); |
|
|
JpaTransactionManager transactionManager = new JpaTransactionManager(); |
|
|
transactionManager.setEntityManagerFactory(EntityManager().getObject()); |
|
|
transactionManager.setEntityManagerFactory(EntityManager().getObject()); |
|
|