spring-batch DefaultJobKeyGenerator 源码
spring-batch DefaultJobKeyGenerator 代码
文件路径:/spring-batch-core/src/main/java/org/springframework/batch/core/DefaultJobKeyGenerator.java
/*
* Copyright 2006-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.core;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import org.springframework.util.Assert;
import org.springframework.util.DigestUtils;
/**
* Default implementation of the {@link JobKeyGenerator} interface. This implementation
* provides a single hash value based on the {@link JobParameters} object passed in. Only
* identifying parameters (as per {@link JobParameter#isIdentifying()}) are used in the
* calculation of the key.
*
* @author Michael Minella
* @author Mahmoud Ben Hassine
* @since 2.2
*/
public class DefaultJobKeyGenerator implements JobKeyGenerator<JobParameters> {
/**
* Generates the job key to be used based on the {@link JobParameters} instance
* provided.
*/
@Override
public String generateKey(JobParameters source) {
Assert.notNull(source, "source must not be null");
Map<String, JobParameter> props = source.getParameters();
StringBuilder stringBuffer = new StringBuilder();
List<String> keys = new ArrayList<>(props.keySet());
Collections.sort(keys);
for (String key : keys) {
JobParameter jobParameter = props.get(key);
if (jobParameter.isIdentifying()) {
String value = jobParameter.getValue() == null ? "" : jobParameter.toString();
stringBuffer.append(key).append("=").append(value).append(";");
}
}
try {
return DigestUtils.md5DigestAsHex(stringBuffer.toString().getBytes("UTF-8"));
}
catch (UnsupportedEncodingException e) {
throw new IllegalStateException("UTF-8 encoding not available. Fatal (should be in the JDK).");
}
}
}
相关信息
相关文章
spring-batch ItemProcessListener 源码
spring-batch ItemReadListener 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦