io.micronaut.configuration.jdbc.tomcat.DatasourceFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-jdbc-tomcat Show documentation
Show all versions of micronaut-jdbc-tomcat Show documentation
Projects to support SQL Database access in Micronaut
/*
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.configuration.jdbc.tomcat;
import javax.annotation.Nullable;
import io.micronaut.configuration.jdbc.tomcat.metadata.TomcatDataSourcePoolMetadata;
import io.micronaut.context.annotation.Context;
import io.micronaut.context.annotation.EachBean;
import io.micronaut.context.annotation.Factory;
import io.micronaut.context.annotation.Requires;
import io.micronaut.jdbc.DataSourceResolver;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.annotation.PreDestroy;
import javax.sql.DataSource;
import java.util.ArrayList;
import java.util.List;
/**
* Creates a tomcat data source for each configuration bean.
*
* @author James Kleeh
* @author Christian Oestreich
* @since 1.0
*/
@Factory
public class DatasourceFactory implements AutoCloseable {
private static final Logger LOG = LoggerFactory.getLogger(DatasourceFactory.class);
private List dataSources = new ArrayList<>(2);
private final DataSourceResolver dataSourceResolver;
/**
* Default constructor.
* @param dataSourceResolver The data source resolver
*/
public DatasourceFactory(@Nullable DataSourceResolver dataSourceResolver) {
this.dataSourceResolver = dataSourceResolver == null ? DataSourceResolver.DEFAULT : dataSourceResolver;
}
/**
* @param datasourceConfiguration A {@link DatasourceConfiguration}
* @return An Apache Tomcat {@link DataSource}
*/
@Context
@EachBean(DatasourceConfiguration.class)
public DataSource dataSource(DatasourceConfiguration datasourceConfiguration) {
org.apache.tomcat.jdbc.pool.DataSource ds = new org.apache.tomcat.jdbc.pool.DataSource(datasourceConfiguration);
dataSources.add(ds);
return ds;
}
/**
* Method to create a metadata object that allows pool value lookup for each datasource object.
*
* @param dataSource The datasource
* @return a {@link TomcatDataSourcePoolMetadata}
*/
@EachBean(DataSource.class)
@Requires(beans = {DatasourceConfiguration.class})
public TomcatDataSourcePoolMetadata tomcatPoolDataSourceMetadataProvider(
DataSource dataSource) {
TomcatDataSourcePoolMetadata dataSourcePoolMetadata = null;
DataSource resolved = dataSourceResolver.resolve(dataSource);
if (resolved instanceof org.apache.tomcat.jdbc.pool.DataSource) {
dataSourcePoolMetadata = new TomcatDataSourcePoolMetadata((org.apache.tomcat.jdbc.pool.DataSource) resolved);
}
return dataSourcePoolMetadata;
}
@Override
@PreDestroy
public void close() {
for (org.apache.tomcat.jdbc.pool.DataSource dataSource : dataSources) {
try {
dataSource.close();
} catch (Exception e) {
if (LOG.isWarnEnabled()) {
LOG.warn("Error closing data source [" + dataSource + "]: " + e.getMessage(), e);
}
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy