You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the main reason for this problem is that ConfigurationPropertiesRebinder is executed earlier than RefreshScopeRefreshedEventListener
And the RefreshScopeRefreshedEventListener.getOrder is inconsistent with @Order. When I modified the getOrder method to return Ordered.HIGHEST_PRECEDENCE, the problem was solved (@Order is not used here)
The text was updated successfully, but these errors were encountered:
Hello
I think the main reason for this problem is that
ConfigurationPropertiesRebinder
is executed earlier thanRefreshScopeRefreshedEventListener
And the
RefreshScopeRefreshedEventListener.getOrder
is inconsistent with@Order
. When I modified the getOrder method toreturn Ordered.HIGHEST_PRECEDENCE
, the problem was solved (@Order
is not used here)The text was updated successfully, but these errors were encountered: