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
A side effect here is that listeners accepting Object (e.g. ApplicationListener<AfterSaveEvent<Object>>) no longer match any subtype because of the refined type matching. Instead, these listeners need to be defined as ApplicationListener<AfterSaveEvent<? extends Object>> which is actually the correct version according to generics.
See spring-projects/spring-framework#17661
The text was updated successfully, but these errors were encountered: