change project structure
[usecase-ui/server.git] / server / src / main / java / org / onap / usecaseui / server / hibernate / HibernateConfiguration.java
1 /*
2  * Copyright (C) 2017 CMCC, Inc. and others. All rights reserved.
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 package org.onap.usecaseui.server.hibernate;
17
18 import java.util.Properties;
19
20 import javax.sql.DataSource;
21
22 import org.springframework.beans.factory.annotation.Autowired;
23 import org.springframework.context.annotation.Bean;
24 import org.springframework.orm.hibernate4.LocalSessionFactoryBean;
25 import org.springframework.orm.jpa.JpaTransactionManager;
26 import org.springframework.transaction.PlatformTransactionManager;
27
28
29 @org.springframework.context.annotation.Configuration
30 public class HibernateConfiguration
31 {
32     @Autowired
33     private DataSource dataSource;
34
35     @Bean
36     public LocalSessionFactoryBean sessionFactory() {
37
38         LocalSessionFactoryBean sessionFactory = new LocalSessionFactoryBean();
39         sessionFactory.setDataSource(dataSource);
40         sessionFactory.setHibernateProperties(hibernateProperties());
41         sessionFactory.setPackagesToScan(new String[] {"org.onap.usecaseui.server.bean"});
42         return sessionFactory;
43     }
44
45     private Properties hibernateProperties() {
46         Properties properties = new Properties();
47         properties.put("hibernate.dialect", "org.hibernate.dialect.MySQLDialect");
48         properties.put("hibernate.show_sql", "false");
49         return properties;        
50     }
51
52     @Bean
53     public PlatformTransactionManager transactionManager() {
54         return new JpaTransactionManager();
55     }
56
57 }