98b6221d6d97f576265f95bca357541e81b3f855
[ccsdk/cds.git] /
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.ccsdk.apps.blueprintsprocessor.db.primary
18
19 import org.onap.ccsdk.apps.blueprintsprocessor.db.PrimaryDataSourceProperties
20 import org.slf4j.LoggerFactory
21 import org.springframework.context.annotation.Bean
22 import org.springframework.context.annotation.Configuration
23 import org.springframework.context.annotation.Primary
24 import org.springframework.data.jpa.repository.config.EnableJpaRepositories
25 import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate
26 import org.springframework.jdbc.datasource.DriverManagerDataSource
27 import org.springframework.orm.jpa.JpaTransactionManager
28 import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean
29 import org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter
30 import org.springframework.transaction.PlatformTransactionManager
31 import java.util.*
32 import javax.sql.DataSource
33
34 @Configuration
35 @EnableJpaRepositories(
36         basePackages = ["org.onap.ccsdk.apps.blueprintsprocessor.db.primary"],
37         entityManagerFactoryRef = "primaryEntityManager",
38         transactionManagerRef = "primaryTransactionManager"
39 )
40 open class PrimaryDatabaseConfiguration(private val primaryDataSourceProperties: PrimaryDataSourceProperties) {
41     val log = LoggerFactory.getLogger(PrimaryDatabaseConfiguration::class.java)!!
42
43     @Primary
44     @Bean("primaryEntityManager")
45     open fun primaryEntityManager(): LocalContainerEntityManagerFactoryBean {
46         val em = LocalContainerEntityManagerFactoryBean()
47         em.dataSource = primaryDataSource()
48         em.setPackagesToScan("org.onap.ccsdk.apps.blueprintsprocessor.db.primary")
49
50         val vendorAdapter = HibernateJpaVendorAdapter()
51         em.jpaVendorAdapter = vendorAdapter
52         val properties = HashMap<String, Any>()
53         properties["hibernate.hbm2ddl.auto"] = primaryDataSourceProperties.hibernateHbm2ddlAuto
54         properties["hibernate.dialect"] = primaryDataSourceProperties.hibernateDialect
55         em.jpaPropertyMap = properties
56         return em
57     }
58
59     @Primary
60     @Bean("primaryDataSource")
61     open fun primaryDataSource(): DataSource {
62         val dataSource = DriverManagerDataSource()
63         dataSource.setDriverClassName(primaryDataSourceProperties.driverClassName)
64         dataSource.url = primaryDataSourceProperties.url
65         dataSource.username = primaryDataSourceProperties.username
66         dataSource.password = primaryDataSourceProperties.password
67         return dataSource
68     }
69
70     @Primary
71     @Bean("primaryTransactionManager")
72     open fun primaryTransactionManager(): PlatformTransactionManager {
73         val transactionManager = JpaTransactionManager()
74         transactionManager.entityManagerFactory = primaryEntityManager().getObject()
75         log.info("Initialised Primary Transaction Manager for url ${primaryDataSourceProperties.url}")
76         return transactionManager
77     }
78
79     @Bean("primaryNamedParameterJdbcTemplate")
80     open fun primaryNamedParameterJdbcTemplate(primaryDataSource: DataSource): NamedParameterJdbcTemplate {
81         return NamedParameterJdbcTemplate(primaryDataSource)
82     }
83
84 }