instantiate and terminate servce
[usecase-ui/server.git] / src / main / java / org / onap / usecaseui / server / dao / UsecaseuiDataSource.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.dao;
17
18 import javax.sql.DataSource;
19
20 import org.springframework.beans.factory.annotation.Value;
21 import org.springframework.context.annotation.Bean;
22 import org.springframework.jdbc.datasource.DriverManagerDataSource;
23 import org.springframework.stereotype.Component;
24
25
26 @Component
27 public class UsecaseuiDataSource
28 {
29     @Value("${spring.database.driver.classname}")
30     private String dbDriverClassName;
31
32     @Value("${spring.datasource.url}")
33     private String dbUrl;
34
35     @Value("${spring.datasource.username}")
36     private String dbUsername;
37
38     @Value("${spring.datasource.password}")
39     private String dbPassword;
40
41     @Bean
42     public DataSource dataSource() {
43         DriverManagerDataSource dataSource = new DriverManagerDataSource();
44         dataSource.setDriverClassName(dbDriverClassName);
45         dataSource.setUrl(dbUrl);
46         dataSource.setUsername(dbUsername);
47         dataSource.setPassword(dbPassword);
48         return dataSource;
49     }
50 }