org.springframework.batch.core.repository.dao
Class AbstractJdbcBatchMetadataDao
java.lang.Object
org.springframework.batch.core.repository.dao.AbstractJdbcBatchMetadataDao
- All Implemented Interfaces:
- org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
- JdbcExecutionContextDao, JdbcJobExecutionDao, JdbcJobInstanceDao, JdbcStepExecutionDao
public abstract class AbstractJdbcBatchMetadataDao
- extends java.lang.Object
- implements org.springframework.beans.factory.InitializingBean
Encapsulates common functionality needed by JDBC batch metadata DAOs -
provides jdbcTemplate for subclasses and handles table prefixes.
- Author:
- Robert Kasanicky
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DEFAULT_TABLE_PREFIX
public static final java.lang.String DEFAULT_TABLE_PREFIX
- Default value for the table prefix property.
- See Also:
- Constant Field Values
DEFAULT_EXIT_MESSAGE_LENGTH
public static final int DEFAULT_EXIT_MESSAGE_LENGTH
- See Also:
- Constant Field Values
AbstractJdbcBatchMetadataDao
public AbstractJdbcBatchMetadataDao()
getQuery
protected java.lang.String getQuery(java.lang.String base)
getTablePrefix
protected java.lang.String getTablePrefix()
setTablePrefix
public void setTablePrefix(java.lang.String tablePrefix)
- Public setter for the table prefix property. This will be prefixed to all
the table names before queries are executed. Defaults to
DEFAULT_TABLE_PREFIX.
- Parameters:
tablePrefix - the tablePrefix to set
setJdbcTemplate
public void setJdbcTemplate(org.springframework.jdbc.core.simple.SimpleJdbcOperations jdbcTemplate)
getJdbcTemplate
protected org.springframework.jdbc.core.simple.SimpleJdbcOperations getJdbcTemplate()
getClobTypeToUse
public int getClobTypeToUse()
setClobTypeToUse
public void setClobTypeToUse(int clobTypeToUse)
afterPropertiesSet
public void afterPropertiesSet()
throws java.lang.Exception
- Specified by:
afterPropertiesSet in interface org.springframework.beans.factory.InitializingBean
- Throws:
java.lang.Exception
Copyright © 2009. All Rights Reserved.