提交 b8827f9e 编写于 作者: K ken.lj 提交者: Huxing Zhang

[Dubbo-3367] Fail to parse config text with white space (#3590)

上级 a8b28cf3
...@@ -38,7 +38,7 @@ public class ConfigurationUtils { ...@@ -38,7 +38,7 @@ public class ConfigurationUtils {
public static int getServerShutdownTimeout() { public static int getServerShutdownTimeout() {
int timeout = Constants.DEFAULT_SERVER_SHUTDOWN_TIMEOUT; int timeout = Constants.DEFAULT_SERVER_SHUTDOWN_TIMEOUT;
Configuration configuration = Environment.getInstance().getConfiguration(); Configuration configuration = Environment.getInstance().getConfiguration();
String value = configuration.getString(Constants.SHUTDOWN_WAIT_KEY); String value = StringUtils.trim(configuration.getString(Constants.SHUTDOWN_WAIT_KEY));
if (value != null && value.length() > 0) { if (value != null && value.length() > 0) {
try { try {
...@@ -47,7 +47,7 @@ public class ConfigurationUtils { ...@@ -47,7 +47,7 @@ public class ConfigurationUtils {
// ignore // ignore
} }
} else { } else {
value = configuration.getString(Constants.SHUTDOWN_WAIT_SECONDS_KEY); value = StringUtils.trim(configuration.getString(Constants.SHUTDOWN_WAIT_SECONDS_KEY));
if (value != null && value.length() > 0) { if (value != null && value.length() > 0) {
try { try {
timeout = Integer.parseInt(value) * 1000; timeout = Integer.parseInt(value) * 1000;
...@@ -64,7 +64,7 @@ public class ConfigurationUtils { ...@@ -64,7 +64,7 @@ public class ConfigurationUtils {
} }
public static String getProperty(String property, String defaultValue) { public static String getProperty(String property, String defaultValue) {
return Environment.getInstance().getConfiguration().getString(property, defaultValue); return StringUtils.trim(Environment.getInstance().getConfiguration().getString(property, defaultValue));
} }
public static Map<String, String> parseProperties(String content) throws IOException { public static Map<String, String> parseProperties(String content) throws IOException {
......
...@@ -789,4 +789,8 @@ public final class StringUtils { ...@@ -789,4 +789,8 @@ public final class StringUtils {
} }
return buf.toString(); return buf.toString();
} }
public static String trim(String str) {
return str == null ? null : str.trim();
}
} }
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
*
* http://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.apache.dubbo.common.config;
import org.apache.dubbo.common.Constants;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
/**
*
*/
public class ConfigurationUtilsTest {
@Test
public void testGetServerShutdownTimeout () {
System.setProperty(Constants.SHUTDOWN_WAIT_KEY, " 10000");
Assertions.assertEquals(10000, ConfigurationUtils.getServerShutdownTimeout());
System.clearProperty(Constants.SHUTDOWN_WAIT_KEY);
}
@Test
public void testGetProperty () {
System.setProperty(Constants.SHUTDOWN_WAIT_KEY, " 10000");
Assertions.assertEquals("10000", ConfigurationUtils.getProperty(Constants.SHUTDOWN_WAIT_KEY));
System.clearProperty(Constants.SHUTDOWN_WAIT_KEY);
}
}
...@@ -287,4 +287,12 @@ public class StringUtilsTest { ...@@ -287,4 +287,12 @@ public class StringUtilsTest {
assertThat(s, containsString("0,")); assertThat(s, containsString("0,"));
assertThat(s, containsString("{\"enabled\":true}")); assertThat(s, containsString("{\"enabled\":true}"));
} }
@Test
public void testTrim() {
assertEquals("left blank", StringUtils.trim(" left blank"));
assertEquals("right blank", StringUtils.trim("right blank "));
assertEquals("bi-side blank", StringUtils.trim(" bi-side blank "));
}
} }
\ No newline at end of file
...@@ -557,7 +557,7 @@ public abstract class AbstractConfig implements Serializable { ...@@ -557,7 +557,7 @@ public abstract class AbstractConfig implements Serializable {
for (Method method : methods) { for (Method method : methods) {
if (ClassHelper.isSetter(method)) { if (ClassHelper.isSetter(method)) {
try { try {
String value = compositeConfiguration.getString(extractPropertyName(getClass(), method)); String value = StringUtils.trim(compositeConfiguration.getString(extractPropertyName(getClass(), method)));
// isTypeMatch() is called to avoid duplicate and incorrect update, for example, we have two 'setGeneric' methods in ReferenceConfig. // isTypeMatch() is called to avoid duplicate and incorrect update, for example, we have two 'setGeneric' methods in ReferenceConfig.
if (StringUtils.isNotEmpty(value) && ClassHelper.isTypeMatch(method.getParameterTypes()[0], value)) { if (StringUtils.isNotEmpty(value) && ClassHelper.isTypeMatch(method.getParameterTypes()[0], value)) {
method.invoke(this, ClassHelper.convertPrimitive(method.getParameterTypes()[0], value)); method.invoke(this, ClassHelper.convertPrimitive(method.getParameterTypes()[0], value));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册