保持shardingsphere属性key

This commit is contained in:
thinkgem
2022-05-31 12:05:19 +08:00
parent 63dc0f8935
commit 5f61c98b49

View File

@@ -236,6 +236,9 @@ public class PropertiesUtils {
* @author Think Gem
*/
private String getStandardKey(String key) {
if (key.startsWith("spring.shardingsphere.")) {
return key;
}
StringBuilder sb = new StringBuilder();
boolean upperCase = false;
for (int i = 0; i < key.length(); i++) {