本文整理汇总了Java中org.springframework.batch.item.ExecutionContext.entrySet方法的典型用法代码示例。如果您正苦于以下问题:Java ExecutionContext.entrySet方法的具体用法?Java ExecutionContext.entrySet怎么用?Java ExecutionContext.entrySet使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.springframework.batch.item.ExecutionContext
的用法示例。
在下文中一共展示了ExecutionContext.entrySet方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: update
import org.springframework.batch.item.ExecutionContext; //导入方法依赖的package包/类
@Override
public void update(ExecutionContext executionContext) throws
ItemStreamException {
/* Clear context */
for (Entry<String, Object> entry : executionContext.entrySet()) {
String key = entry.getKey();
executionContext.remove(key);
}
executionContext.putInt(IDS_NUMBER, number);
executionContext.putInt(CURRENT_ID_COUNT, count);
for (int i = 0; i < number; i++) {
executionContext.putString(LIST_ID + i, ids[i]);
}
}
示例2: AdaptedExecutionContext
import org.springframework.batch.item.ExecutionContext; //导入方法依赖的package包/类
public AdaptedExecutionContext(ExecutionContext exeContext) throws InstantiationException, IllegalAccessException {
this.hashCode = exeContext.hashCode();
this.dirtyFlag = exeContext.isDirty();
// Get a set of the entries
Set<Entry<String, Object>> set = exeContext.entrySet();
// Get an iterator
Iterator<Entry<String, Object>> i = set.iterator();
// Display elements
while (i.hasNext()) {
Entry<String, Object> me = i.next();
String name = me.getKey();
Object obj = getValue(me.getValue());
map.put(name, obj);
}
}