提交 dc596b13 编写于 作者: W william.liangf

URL过滤host

git-svn-id: http://code.alibabatech.com/svn/dubbo/trunk@128 1a56cb94-b969-4eaa-88fa-be21384802f2
上级 ecc65798
......@@ -28,6 +28,7 @@ import java.util.Map;
import java.util.TreeMap;
import com.alibaba.dubbo.common.utils.CollectionUtils;
import com.alibaba.dubbo.common.utils.NetUtils;
/**
* URL - Uniform Resource Locator (Immutable, ThreadSafe)
......@@ -131,7 +132,7 @@ public final class URL implements Serializable {
this.protocol = protocol;
this.username = username;
this.password = password;
this.host = host;
this.host = NetUtils.filterLocalHost(host);
this.port = (port < 0 ? 0 : port);
this.path = path;
// trim the beginning "/"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册