保持shardingsphere属性key

This commit is contained in:
thinkgem
2022-05-31 12:04:22 +08:00
parent 9c640a6433
commit c248f1ec04

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++) {