类 AbstractColumnMaxValueIncrementer
- java.lang.Object
- org.springframework.jdbc.support.incrementer.AbstractDataFieldMaxValueIncrementer
- org.springframework.jdbc.support.incrementer.AbstractColumnMaxValueIncrementer
- 所有已实现的接口:
InitializingBean,DataFieldMaxValueIncrementer
public abstract class AbstractColumnMaxValueIncrementer extends AbstractDataFieldMaxValueIncrementer
Abstract base class forDataFieldMaxValueIncrementerimplementations that use a column in a custom sequence table. Subclasses need to provide the specific handling of that table in theirAbstractDataFieldMaxValueIncrementer.getNextKey()implementation.- 从以下版本开始:
- 2.5.3
- 作者:
- Juergen Hoeller
字段概要
从类继承的字段 org.springframework.jdbc.support.incrementer.AbstractDataFieldMaxValueIncrementer
paddingLength
构造器概要
构造器 构造器 说明 AbstractColumnMaxValueIncrementer()Default constructor for bean property style usage.AbstractColumnMaxValueIncrementer(DataSource dataSource, String incrementerName, String columnName)Convenience constructor.
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidafterPropertiesSet()Invoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.intgetCacheSize()Return the number of buffered keys.StringgetColumnName()Return the name of the column in the sequence table.voidsetCacheSize(int cacheSize)Set the number of buffered keys.voidsetColumnName(String columnName)Set the name of the column in the sequence table.从类继承的方法 org.springframework.jdbc.support.incrementer.AbstractDataFieldMaxValueIncrementer
getDataSource, getIncrementerName, getNextKey, getPaddingLength, nextIntValue, nextLongValue, nextStringValue, setDataSource, setIncrementerName, setPaddingLength
构造器详细资料
AbstractColumnMaxValueIncrementer
public AbstractColumnMaxValueIncrementer()
Default constructor for bean property style usage.
AbstractColumnMaxValueIncrementer
public AbstractColumnMaxValueIncrementer(DataSource dataSource, String incrementerName, String columnName)
Convenience constructor.- 参数:
dataSource- the DataSource to useincrementerName- the name of the sequence/table to usecolumnName- the name of the column in the sequence table to use
方法详细资料
setColumnName
public void setColumnName(String columnName)
Set the name of the column in the sequence table.
getColumnName
public String getColumnName()
Return the name of the column in the sequence table.
setCacheSize
public void setCacheSize(int cacheSize)
Set the number of buffered keys.
getCacheSize
public int getCacheSize()
Return the number of buffered keys.
afterPropertiesSet
public void afterPropertiesSet()
从接口复制的说明:InitializingBeanInvoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.This method allows the bean instance to perform validation of its overall configuration and final initialization when all bean properties have been set.