Replies: 2 comments 1 reply
-
This is the problem with snakeyaml. You can specify your self snakeyaml version. Dubbo do not strongly depend on it. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Pre-check
Apache Dubbo Component
Java SDK (apache/dubbo)
Details
In a commit in dubbo 3.x, after upgrading snakeyaml from 1.x to 2.x, the following exception will occur after starting spring boot starter 2.1.x:
The reason is that some obsolete methods were removed in snakeyaml 2.x, which caused spring boot to fail to load the corresponding method when it started. This issue also mentioned it.
The solution I can think of is to upgrade the spring boot version to 3.0.x to ensure that the snakeyaml versions used by dubbo and spring boot are compatible. However, upgrading the spring boot version has a wide range of impacts. I would like to ask if there are other solutions besides this? 🙏🙏🙏
Code of Conduct
Beta Was this translation helpful? Give feedback.
All reactions