All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jdbi.v3.spring5.package-info Maven / Gradle / Ivy

There is a newer version: 3.47.0
Show newest version
/*
 * 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
 *
 * http://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.
 */
/**
 * 

* Classes here provide integration hooks for working with the Spring framework. * Jdbi instances may be obtained which will * behave correctly with Spring managed transactions. *

*

* Using the Spring facilities entails configuring Jdbi via the JdbiFactoryBean class, * and providing a DataSource with an associated transaction manager to that bean, such as: *

*
 * <beans xmlns="http://www.springframework.org/schema/beans"
 * xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 * xmlns:aop="http://www.springframework.org/schema/aop"
 * xmlns:tx="http://www.springframework.org/schema/tx"
 * xsi:schemaLocation="
 * http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
 * http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd
 * http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
 * <tx:annotation-driven transaction-manager="transactionManager"/>
 * <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
 * <property name="dataSource" ref="derby"/>
 * </bean>
 * <bean id="derby" class="org.apache.derby.jdbc.EmbeddedDataSource" destroy-method="close">
 * <property name="databaseName" value="testing"/>
 * </bean>
 * <bean id="jdbi" class="org.jdbi.v3.spring5.JdbiFactoryBean">
 * <property name="dataSource" ref="derby"/>
 * </bean>
 * <bean id="service" class="org.jdbi.v3.spring5.DummyService">
 * <constructor-arg ref="jdbi"/>
 * </bean>
 * </beans>
 * 
*/ package org.jdbi.v3.spring5;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy