当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
SingleDataSourceLookup (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.jdbc.datasource.lookup
Class SingleDataSourceLookup
java.lang.Object
org.springframework.jdbc.datasource.lookup.SingleDataSourceLookup
- All Implemented Interfaces:
- DataSourceLookup
public class SingleDataSourceLookup
- extends Object
- implements DataSourceLookup
An implementation of the DataSourceLookup that simply wraps a
single given DataSource, returned for any data source name.
- Since:
- 2.0
- Author:
- Juergen Hoeller
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SingleDataSourceLookup
public SingleDataSourceLookup(DataSource dataSource)
- Create a new instance of the
SingleDataSourceLookup
class.
- Parameters:
dataSource
- the single DataSource
to wrap
getDataSource
public DataSource getDataSource(String dataSourceName)
- Description copied from interface:
DataSourceLookup
- Retrieve the DataSource identified by the given name.
- Specified by:
getDataSource
in interface DataSourceLookup
- Parameters:
dataSourceName
- the name of the DataSource
- Returns:
- the DataSource (never
null
)
Copyright © 2002-2007 The Spring Framework.