Spring Boot has a AbstractAuthorizationAuditListener class designed to adapt Spring security authorization events. In Spring Boot 2.7 we listened for an org.springframework.security.access.event.AbstractAuthorizationEvent but we now need to switch to AuthorizationDeniedEvent or AuthorizationGrantedEvent.
It would be very helpful if these new events had a common super type that we could use.
Comment From: philwebb
Thanks for the fast fix!