|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object org.seasar.extension.jdbc.query.AbstractQuery<S> org.seasar.extension.jdbc.query.AbstractAutoUpdate<T,AutoUpdate<T>> org.seasar.extension.jdbc.query.AutoUpdateImpl<T>
T
- エンティティの型です。public class AutoUpdateImpl<T>
AutoUpdate
の実装クラスです。
フィールドの概要 | |
---|---|
protected java.util.Map<java.lang.String,java.lang.Object> |
beforeStates
更新前のプロパティの状態を持つ Map |
protected boolean |
excludesNull
null 値のプロパティを更新から除外する場合true |
protected java.util.Set<java.lang.String> |
excludesProperties
更新から除外するプロパティ |
protected java.util.Set<java.lang.String> |
includesProperties
更新対象とするプロパティ |
protected boolean |
includeVersion
バージョンプロパティを更新対象に含める場合 true |
protected SetClause |
setClause
set句 |
protected java.util.List<PropertyMeta> |
targetProperties
更新対象となるプロパティメタデータの List |
protected static java.lang.String |
UPDATE_STATEMENT
UDPATE文 |
protected WhereClause |
whereClause
where句 |
クラス org.seasar.extension.jdbc.query.AbstractAutoUpdate から継承されたフィールド |
---|
entity, entityMeta, suppresOptimisticLockException |
クラス org.seasar.extension.jdbc.query.AbstractQuery から継承されたフィールド |
---|
callerClass, callerMethodName, completed, executedSql, jdbcManager, logger, paramList, queryTimeout |
コンストラクタの概要 | |
---|---|
AutoUpdateImpl(JdbcManagerImplementor jdbcManager,
T entity)
|
メソッドの概要 | |
---|---|
AutoUpdate<T> |
changedFrom(java.util.Map<java.lang.String,? extends java.lang.Object> beforeStates)
before から変更のあったプロパティだけを更新対象とします。 |
AutoUpdate<T> |
changedFrom(T beforeEntity)
before から変更のあったプロパティだけを更新対象とします。 |
AutoUpdate<T> |
excludes(java.lang.CharSequence... propertyNames)
指定のプロパティを更新対象から除外します。 |
AutoUpdate<T> |
excludesNull()
null 値のプロパティを更新対象から除外します。 |
protected int |
executeInternal()
データベースの更新を実行します。 |
AutoUpdate<T> |
includes(java.lang.CharSequence... propertyNames)
指定のプロパティのみを更新対象とします。 |
AutoUpdate<T> |
includesVersion()
バージョンプロパティを通常の更新対象に含め、バージョンチェックの対象外とします。 |
protected void |
incrementVersion()
バージョンの値を増加させます。 |
protected boolean |
isOptimisticLock()
楽観的同時実行制御を行っている場合は true を返します。 |
protected void |
prepare(java.lang.String methodName)
クエリの準備をします。 |
protected void |
prepareParams()
バインド変数を準備します. |
protected void |
prepareSetClause()
set句の準備をします。 |
protected void |
prepareTargetProperties()
set句に設定されるプロパティの準備をします。 |
protected void |
prepareWhereClause()
where句の準備をします。 |
AutoUpdate<T> |
suppresOptimisticLockException()
バージョンチェックを行った場合に、 更新行数が0行でも OptimisticLockException をスローしないようにします。 |
protected java.lang.String |
toSql()
SQLに変換します。 |
クラス org.seasar.extension.jdbc.query.AbstractAutoUpdate から継承されたメソッド |
---|
createPreparedStatement, execute, getEntity, getEntityMeta, getPreparedStatement, postExecute, prepareSql, validateRows |
クラス org.seasar.extension.jdbc.query.AbstractQuery から継承されたメソッド |
---|
addParam, addParam, addParam, addParam, assertNotCompleted, callerClass, callerMethodName, completed, getCallerClass, getCallerMethodName, getExecutedSql, getJdbcManager, getParam, getParamClasses, getParamSize, getParamValues, getParamValueTypes, getQueryTimeout, getValueType, handleResultSet, logSql, logSql, prepareCallerClassAndMethodName, prepareInParams, queryTimeout, resetParams, toStringArray |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
インタフェース org.seasar.extension.jdbc.Update から継承されたメソッド |
---|
execute |
インタフェース org.seasar.extension.jdbc.Query から継承されたメソッド |
---|
callerClass, callerMethodName, queryTimeout |
フィールドの詳細 |
---|
protected static final java.lang.String UPDATE_STATEMENT
protected boolean includeVersion
true
protected boolean excludesNull
null
値のプロパティを更新から除外する場合true
protected final java.util.Set<java.lang.String> includesProperties
protected final java.util.Set<java.lang.String> excludesProperties
protected java.util.Map<java.lang.String,java.lang.Object> beforeStates
Map
protected final java.util.List<PropertyMeta> targetProperties
List
protected final SetClause setClause
protected final WhereClause whereClause
コンストラクタの詳細 |
---|
public AutoUpdateImpl(JdbcManagerImplementor jdbcManager, T entity)
jdbcManager
- 内部的なJDBCマネージャentity
- エンティティメソッドの詳細 |
---|
public AutoUpdate<T> includesVersion()
AutoUpdate
の記述:
このメソッドが呼び出されると、update
文のwhere
句にはバージョンのチェックが含まれなくなり、
バージョンプロパティは通常のプロパティと同じように更新対象に含められます (AutoUpdate.excludesNull()
やAutoUpdate.changedFrom(Object)
等も同じように適用されます)。
AutoUpdate<T>
内の includesVersion
public AutoUpdate<T> excludesNull()
AutoUpdate
の記述: null
値のプロパティを更新対象から除外します。
AutoUpdate<T>
内の excludesNull
public AutoUpdate<T> includes(java.lang.CharSequence... propertyNames)
AutoUpdate
の記述:
AutoUpdate<T>
内の includes
propertyNames
- 更新対象とするプロパティ名の並び
public AutoUpdate<T> excludes(java.lang.CharSequence... propertyNames)
AutoUpdate
の記述:
AutoUpdate<T>
内の excludes
propertyNames
- 更新対象から除外するプロパティ名の並び
public AutoUpdate<T> changedFrom(T beforeEntity)
AutoUpdate
の記述: before
から変更のあったプロパティだけを更新対象とします。
AutoUpdate<T>
内の changedFrom
beforeEntity
- 変更前の状態を持つエンティティ
public AutoUpdate<T> changedFrom(java.util.Map<java.lang.String,? extends java.lang.Object> beforeStates)
AutoUpdate
の記述: before
から変更のあったプロパティだけを更新対象とします。
AutoUpdate<T>
内の changedFrom
beforeStates
- 変更前の状態を持つMap
public AutoUpdate<T> suppresOptimisticLockException()
AutoUpdate
の記述: OptimisticLockException
をスローしないようにします。
AutoUpdate<T>
内の suppresOptimisticLockException
protected void prepare(java.lang.String methodName)
AbstractQuery
の記述:
AbstractQuery<AutoUpdate<T>>
内の prepare
methodName
- メソッド名protected int executeInternal()
AbstractAutoUpdate
の記述:
AbstractAutoUpdate<T,AutoUpdate<T>>
内の executeInternal
protected void prepareTargetProperties()
protected void prepareSetClause()
protected void prepareWhereClause()
protected void prepareParams()
protected java.lang.String toSql()
AbstractAutoUpdate<T,AutoUpdate<T>>
内の toSql
protected boolean isOptimisticLock()
AbstractAutoUpdate
の記述: true
を返します。
AbstractAutoUpdate<T,AutoUpdate<T>>
内の isOptimisticLock
true
protected void incrementVersion()
AbstractAutoUpdate
の記述:
AbstractAutoUpdate<T,AutoUpdate<T>>
内の incrementVersion
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |