zrlw commented on PR #16059:
URL: https://github.com/apache/dubbo/pull/16059#issuecomment-3822112571

   This pr might cause compatible problems for migrating 2.7.x to 3.3 as the 
namespace of ``` dubbo:annoation``` had changed since 2.7.x, see details at
   
https://github.com/apache/dubbo/blob/2.7.x/dubbo-config/dubbo-config-spring/src/main/resources/META-INF/dubbo.xsd
   so you'd better modify the xmls by chaning the namesapce to solve this 
problem:
   ```
   <?xml version="1.0" encoding="UTF-8"?>
   <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
          xmlns:dubbo="http://dubbo.apache.org/schema/dubbo";
          xmlns="http://www.springframework.org/schema/beans";
          xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
          http://dubbo.apache.org/schema/dubbo 
http://dubbo.apache.org/schema/dubbo/dubbo.xsd";>
       <dubbo:annotation package="xxx"/>
   </beans>
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to