I found %% expression on spring batch source. Is this SpEL? How do I use %% expression?
protected String getQuery(String base) {
return StringUtils.replace(base, "%PREFIX%", tablePrefix);
}
I found %% expression on spring batch source. Is this SpEL? How do I use %% expression?
protected String getQuery(String base) {
return StringUtils.replace(base, "%PREFIX%", tablePrefix);
}
Copyright © 2021 Jogjafile Inc.
This is not spel. It's used to replace the string with some target value. For example,