Fixed
Details
Assignee
UnassignedUnassignedReporter
Henry CloutHenry Clout(Deactivated)Components
Fix versions
Affects versions
Priority
Major
Details
Details
Assignee
Unassigned
UnassignedReporter
Henry Clout
Henry Clout(Deactivated)Components
Fix versions
Affects versions
Priority
Created March 30, 2020 at 10:35 PM
Updated February 13, 2025 at 10:17 AM
Resolved January 10, 2025 at 2:58 PM
When the ByteBuddy BasicProxyFactoryImpl is used to generate proxies, the proxies it generates share a common ProxyConfiguration.Interceptor - which is used to hold the bean state. This then breaks during concurrent use as parallel threads compete for the state.
Proposed solution is to instantiate a new interceptor per innovation of
BasicProxyFactoryImpl. getProxy()
A PR has been raised as per this proposal.