org.springframework.orm.ibatis.support |
Classes supporting the org.springframework.orm.ibatis package.
Contains a DAO base class for SqlMapClientTemplate usage.
|
Java Source File Name | Type | Comment |
AbstractLobTypeHandler.java | Class | Abstract base class for iBATIS TypeHandler implementations that map to LOBs. |
BlobByteArrayTypeHandler.java | Class | iBATIS TypeHandler implementation for byte arrays that get mapped to BLOBs.
Retrieves the LobHandler to use from SqlMapClientFactoryBean at config time.
Can also be defined in generic iBATIS mappings, as DefaultLobCreator will
work with most JDBC-compliant database drivers. |
BlobSerializableTypeHandler.java | Class | iBATIS TypeHandler implementation for arbitrary objects that get serialized to BLOBs.
Retrieves the LobHandler to use from SqlMapClientFactoryBean at config time.
Can also be defined in generic iBATIS mappings, as DefaultLobCreator will
work with most JDBC-compliant database drivers. |
ClobStringTypeHandler.java | Class | iBATIS TypeHandler implementation for Strings that get mapped to CLOBs.
Retrieves the LobHandler to use from SqlMapClientFactoryBean at config time.
Particularly useful for storing Strings with more than 4000 characters in an
Oracle database (only possible via CLOBs), in combination with OracleLobHandler.
Can also be defined in generic iBATIS mappings, as DefaultLobCreator will
work with most JDBC-compliant database drivers. |
SqlMapClientDaoSupport.java | Class | Convenient super class for iBATIS SqlMapClient data access objects.
Requires a SqlMapClient to be set, providing a SqlMapClientTemplate
based on it to subclasses.
Instead of a plain SqlMapClient, you can also pass a preconfigured
SqlMapClientTemplate instance in. |