URL Cleanup - fix undesirable code change
Namespace handlers are mapped based on the canonical names for XML namespaces which in Spring do not use "https" as the scheme. See gh-22680
This commit is contained in:
parent
5dc9c4c527
commit
83293b39df
|
|
@ -1406,7 +1406,7 @@ public class BeanDefinitionParserDelegate {
|
||||||
return decorated;
|
return decorated;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (namespaceUri.startsWith("https://www.springframework.org/")) {
|
else if (namespaceUri.startsWith("http://www.springframework.org/")) {
|
||||||
error("Unable to locate Spring NamespaceHandler for XML schema namespace [" + namespaceUri + "]", node);
|
error("Unable to locate Spring NamespaceHandler for XML schema namespace [" + namespaceUri + "]", node);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue