-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Event Publication Registry stores mapping events from Spring Data Relational #186
Comments
Caused by: java.lang.IllegalArgumentException: Failed to call |
you are trying to use protected fields i guess @xjianyu |
This should only happen if you have an In other words, you have to either make sure that there's no transactional event listener listening to those Spring Data-internal events or provide a custom |
This seems to be caused by spring-projects/spring-framework#30399. I have a fix local to our event multicasting infrastructure available that we can use until the upstream ticket is fixed. |
…ractApplicationEventMulticaster. AbstractApplicationEventMulticaster.supportsEvent(…) currently doesn't properly match unresolved, generic ApplicationEvents (see [0]). We now work around this problem by additionally matching the raw event types in a custom override of supportsEvent(…). [0] spring-projects/spring-framework#30399
This should work better now. Please give the latest snapshots a try. |
…ractApplicationEventMulticaster. AbstractApplicationEventMulticaster.supportsEvent(…) currently doesn't properly match unresolved, generic ApplicationEvents (see [0]). We now work around this problem by additionally matching the raw event types in a custom override of supportsEvent(…). [0] spring-projects/spring-framework#30399
… in Spring Framework. Related ticket: GH-186, spring-projects/spring-framework#30399.
When using spring data jdbc to save entities, the EVENT_PUBLICATION table will save springframework events. Is this normal?
The text was updated successfully, but these errors were encountered: