In the upcoming release 2.6.2, the schema namespace is changed from http://code.alibabatech.com/schema/dubbo to http://dubbo.apache.org/schema/dubbo. This will lead to compatibility issue.
We need to address this issue in the next release like this:
- introduce the original dubbo.xsd in META-INF/compat
- change spring.schemas to:
http\://dubbo.apache.org/schema/dubbo/dubbo.xsd=META-INF/dubbo.xsd
http\://code.alibabatech.com/schema/dubbo/dubbo.xsd=META-INF/compat/dubbo.xsd
- change spring.handlers to:
http\://dubbo.apache.org/schema/dubbo=com.alibaba.dubbo.config.spring.schema.DubboNamespaceHandler
http\://code.alibabatech.com/schema/dubbo=com.alibaba.dubbo.config.spring.schema.DubboNamespaceHandler
In the upcoming release
2.6.2, the schema namespace is changed from http://code.alibabatech.com/schema/dubbo to http://dubbo.apache.org/schema/dubbo. This will lead to compatibility issue.We need to address this issue in the next release like this: