Interface DataSourceLookup

All Known Implementing Classes:
BeanFactoryDataSourceLookup, JndiDataSourceLookup, MapDataSourceLookup, SingleDataSourceLookup
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface DataSourceLookup
Strategy interface for looking up DataSources by name.

Used, for example, to resolve data source names in JPA persistence.xml files.

Since:
2.0
Author:
Costin Leau, Juergen Hoeller
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    getDataSource(String dataSourceName)
    Retrieve the DataSource identified by the given name.