1a3953dedb749ed2f0dbf4df14fdebc0f9b1121c
[usecase-ui/server.git] / server / src / main / java / org / onap / usecaseui / server / hibernate / HibernateConfiguration.java
1 /**\r
2  * Copyright (C) 2017 CMCC, Inc. and others. All rights reserved.\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  *     http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 package org.onap.usecaseui.server.hibernate;\r
17 \r
18 import java.util.Properties;\r
19 \r
20 import javax.sql.DataSource;\r
21 \r
22 import org.springframework.beans.factory.annotation.Autowired;\r
23 import org.springframework.context.annotation.Bean;\r
24 import org.springframework.context.annotation.Configuration;\r
25 import org.springframework.orm.hibernate5.LocalSessionFactoryBean;\r
26 import org.springframework.orm.jpa.JpaTransactionManager;\r
27 import org.springframework.transaction.PlatformTransactionManager;\r
28 \r
29 \r
30 @Configuration\r
31 public class HibernateConfiguration\r
32 {\r
33     @Autowired\r
34     private DataSource dataSource;\r
35 \r
36     @Bean\r
37     public LocalSessionFactoryBean sessionFactory() {\r
38 \r
39         LocalSessionFactoryBean sessionFactory = new LocalSessionFactoryBean();\r
40         sessionFactory.setDataSource(dataSource);\r
41         sessionFactory.setHibernateProperties(hibernateProperties());\r
42         sessionFactory.setPackagesToScan(new String[] {"org.onap.usecaseui.server.bean"});\r
43         return sessionFactory;\r
44     }\r
45 \r
46     private Properties hibernateProperties() {\r
47         Properties properties = new Properties();\r
48         properties.put("hibernate.dialect", "org.hibernate.dialect.MySQLDialect");\r
49         properties.put("hibernate.show_sql", "true");\r
50         return properties;        \r
51     }\r
52 \r
53     @Bean\r
54     public PlatformTransactionManager transactionManager() {\r
55         return new JpaTransactionManager();\r
56     }\r
57 \r
58 }\r