parse decoded url string, formatted dubbo://host:port/path?param=value, into strutted URL. @param url, decoded url string @return
(String url)
| 235 | * @return |
| 236 | */ |
| 237 | public static URL valueOf(String url) { |
| 238 | return valueOf(url, false); |
| 239 | } |
| 240 | |
| 241 | public static URL valueOf(String url, ScopeModel scopeModel) { |
| 242 | return valueOf(url).setScopeModel(scopeModel); |