]> source.dussan.org Git - vaadin-framework.git/blob
ca43a5834218d9f8d47f0f3534b147e557851642
[vaadin-framework.git] /
1 /*
2  * Copyright 2000-2018 Vaadin Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5  * use this file except in compliance with the License. You may obtain a copy of
6  * 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, WITHOUT
12  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13  * License for the specific language governing permissions and limitations under
14  * the License.
15  */
16 package com.vaadin.v7.data.util.sqlcontainer.connection;
17
18 import java.sql.Connection;
19 import java.sql.SQLException;
20 import java.util.logging.Level;
21 import java.util.logging.Logger;
22
23 import javax.naming.InitialContext;
24 import javax.naming.NamingException;
25 import javax.sql.DataSource;
26
27 /**
28  * @deprecated As of 8.0, no replacement available.
29  */
30 @Deprecated
31 public class J2EEConnectionPool implements JDBCConnectionPool {
32
33     private String dataSourceJndiName;
34
35     private DataSource dataSource = null;
36
37     public J2EEConnectionPool(DataSource dataSource) {
38         this.dataSource = dataSource;
39     }
40
41     public J2EEConnectionPool(String dataSourceJndiName) {
42         this.dataSourceJndiName = dataSourceJndiName;
43     }
44
45     @Override
46     public Connection reserveConnection() throws SQLException {
47         Connection conn = getDataSource().getConnection();
48         conn.setAutoCommit(false);
49
50         return conn;
51     }
52
53     private DataSource getDataSource() throws SQLException {
54         if (dataSource == null) {
55             dataSource = lookupDataSource();
56         }
57         return dataSource;
58     }
59
60     private DataSource lookupDataSource() throws SQLException {
61         try {
62             InitialContext ic = new InitialContext();
63             return (DataSource) ic.lookup(dataSourceJndiName);
64         } catch (NamingException e) {
65             throw new SQLException(
66                     "NamingException - Cannot connect to the database. Cause: "
67                             + e.getMessage());
68         }
69     }
70
71     @Override
72     public void releaseConnection(Connection conn) {
73         if (conn != null) {
74             try {
75                 conn.close();
76             } catch (SQLException e) {
77                 Logger.getLogger(J2EEConnectionPool.class.getName())
78                         .log(Level.FINE, "Could not release SQL connection", e);
79             }
80         }
81     }
82
83     @Override
84     public void destroy() {
85         dataSource = null;
86     }
87
88 }