in shardingsphere-ui-backend/src/main/java/org/apache/shardingsphere/ui/servcie/impl/ShardingPropertiesServiceImpl.java [50:59]
private void checkShardingProperties(final String configData) {
try {
Properties props = YamlEngine.unmarshal(configData, Properties.class);
new ConfigurationProperties(props);
// CHECKSTYLE:OFF
} catch (final Exception ex) {
// CHECKSTYLE:ON
throw new IllegalArgumentException("Sharding properties is invalid.", ex);
}
}