Uses of Interface
org.springframework.jdbc.datasource.lookup.DataSourceLookup
Packages that use DataSourceLookup Package Description org.springframework.jdbc.datasource.lookup Provides a strategy for looking up JDBC DataSources by name.org.springframework.orm.jpa.persistenceunit Internal support for managing JPA persistence units.Uses of DataSourceLookup in org.springframework.jdbc.datasource.lookup
Classes in org.springframework.jdbc.datasource.lookup that implement DataSourceLookup Modifier and Type Class Description classBeanFactoryDataSourceLookupDataSourceLookupimplementation based on a SpringBeanFactory.classJndiDataSourceLookupJNDI-basedDataSourceLookupimplementation.classMapDataSourceLookupSimpleDataSourceLookupimplementation that relies on a map for doing lookups.classSingleDataSourceLookupAn implementation of the DataSourceLookup that simply wraps a single given DataSource, returned for any data source name.Methods in org.springframework.jdbc.datasource.lookup with parameters of type DataSourceLookup Modifier and Type Method Description voidAbstractRoutingDataSource. setDataSourceLookup(DataSourceLookup dataSourceLookup)Set the DataSourceLookup implementation to use for resolving data source name Strings in thetargetDataSourcesmap.Uses of DataSourceLookup in org.springframework.orm.jpa.persistenceunit
Methods in org.springframework.orm.jpa.persistenceunit that return DataSourceLookup Modifier and Type Method Description DataSourceLookupDefaultPersistenceUnitManager. getDataSourceLookup()Return the JDBC DataSourceLookup that provides DataSources for the persistence provider, resolving data source names inpersistence.xmlagainst Spring-managed DataSource instances.Methods in org.springframework.orm.jpa.persistenceunit with parameters of type DataSourceLookup Modifier and Type Method Description voidDefaultPersistenceUnitManager. setDataSourceLookup(DataSourceLookup dataSourceLookup)Specify the JDBC DataSourceLookup that provides DataSources for the persistence provider, resolving data source names inpersistence.xmlagainst Spring-managed DataSource instances.