org.springframework.orm.ibatis.support
Class SqlMapClientDaoSupport

java.lang.Object
  extended byorg.springframework.orm.ibatis.support.SqlMapClientDaoSupport
All Implemented Interfaces:
InitializingBean

public class SqlMapClientDaoSupport
extends java.lang.Object
implements InitializingBean

Convenient super class for iBATIS SqlMapClient data access objects. Requires a DataSource to be set, providing a SqlMapClientTemplate based on it to subclasses.

Since:
29.11.2003
Author:
Juergen Hoeller
See Also:
SqlMapClientTemplate

Field Summary
protected  org.apache.commons.logging.Log logger
           
 
Constructor Summary
SqlMapClientDaoSupport()
           
 
Method Summary
 void afterPropertiesSet()
          Invoked by a BeanFactory after it has set all bean properties supplied (and satisfied BeanFactoryAware and ApplicationContextAware).
 javax.sql.DataSource getDataSource()
          Return the JDBC DataSource used by this DAO.
 com.ibatis.sqlmap.client.SqlMapClient getSqlMapClient()
          Return the iBATIS Database Layer SqlMap that this template works with.
 SqlMapClientTemplate getSqlMapClientTemplate()
          Return the JdbcTemplate for this DAO, pre-initialized with the DataSource or set explicitly.
protected  void initDao()
          Subclasses can override this for custom initialization behavior.
 void setDataSource(javax.sql.DataSource dataSource)
          Set the JDBC DataSource to be used by this DAO.
 void setSqlMapClient(com.ibatis.sqlmap.client.SqlMapClient sqlMapClient)
          Set the iBATIS Database Layer SqlMap to work with.
 void setSqlMapClientTemplate(SqlMapClientTemplate sqlMapClientTemplate)
          Set the JdbcTemplate for this DAO explicitly, as an alternative to specifying a DataSource.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

logger

protected final org.apache.commons.logging.Log logger
Constructor Detail

SqlMapClientDaoSupport

public SqlMapClientDaoSupport()
Method Detail

setDataSource

public final void setDataSource(javax.sql.DataSource dataSource)
Set the JDBC DataSource to be used by this DAO.


getDataSource

public final javax.sql.DataSource getDataSource()
Return the JDBC DataSource used by this DAO.


setSqlMapClient

public final void setSqlMapClient(com.ibatis.sqlmap.client.SqlMapClient sqlMapClient)
Set the iBATIS Database Layer SqlMap to work with.


getSqlMapClient

public final com.ibatis.sqlmap.client.SqlMapClient getSqlMapClient()
Return the iBATIS Database Layer SqlMap that this template works with.


setSqlMapClientTemplate

public final void setSqlMapClientTemplate(SqlMapClientTemplate sqlMapClientTemplate)
Set the JdbcTemplate for this DAO explicitly, as an alternative to specifying a DataSource.


getSqlMapClientTemplate

public final SqlMapClientTemplate getSqlMapClientTemplate()
Return the JdbcTemplate for this DAO, pre-initialized with the DataSource or set explicitly.


afterPropertiesSet

public final void afterPropertiesSet()
                              throws java.lang.Exception
Description copied from interface: InitializingBean
Invoked by a BeanFactory after it has set all bean properties supplied (and satisfied BeanFactoryAware and ApplicationContextAware).

This method allows the bean instance to perform initialization only possible when all bean properties have been set and to throw an exception in the event of misconfiguration.

Specified by:
afterPropertiesSet in interface InitializingBean
Throws:
java.lang.Exception - in the event of misconfiguration (such as failure to set an essential property) or if initialization fails.

initDao

protected void initDao()
                throws java.lang.Exception
Subclasses can override this for custom initialization behavior. Gets called after population of this instance's bean properties.

Throws:
java.lang.Exception - if initialization fails


Copyright (C) 2003-2004 The Spring Framework Project.