-
Notifications
You must be signed in to change notification settings - Fork 38.4k
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
Support parameter injection for @EventListener methods #29833
Comments
Where exactly does the first method you show live? To become a listener, it has to live in a bean, which is subject for DI. In other words: wouldn't you just inject the needed dependency into the bean that declares the event listener method? Also, |
good to know on the package protected methods! thanks I often put these listeners in |
What happens if you make the injection point Also, regarding having dependencies injected as method arguments in an |
@EventListener
@EventListener
methods
@EventListener
methods
I think having a cache seems reasonable enough. Spring maintains a cache for beans. SIngletons are going to be the most common. That’ll be a quick constant time operation, right? If the beans are scoped, then of course that’ll require re-evaluation but that’s true for the much more verbose alternative of having fields in a containing class, too. |
Thanks for the suggestion but I think it would be at odd with everything else we're doing. If you look at our method invocation mechanism, we do support injections of things that are related to the task at hand. The best example of this is |
@joshlong If you do not want to inject the bean into your |
Thank you for the suggestion |
I use events a lot. They let me think In terms of clean separate of modules, in terms of events, not data/state.
I use
ApplicationEvent
andApplicationListener
a lot. There's at least one in every Spring Boot app I've ever written. In anything more serious than a demo, I use them a ton, as they help me keep my API surface area clean - I only export and work with types. This in turn makes it easier to move to things like CQRS or microservices. I love events and they're implemented well in Spring.The trouble is that I often need dependencies, so I end up creating a
@Bean
:This is a problem because
a) i have to use
ApplicationEvent
subclasses again (I like not having to useApplicationEvent
with the plain@EventListener
b) i am forced to handle exceptions because ApplicationListener doesn't have
throws Throwable
on its signature.So, my dream use case is:
I'd be willing to settle for having to declare
@Autowired
on the beans that are injected (A a
) or , alternatively a new annotation to disambiguate (say,@ApplicationEvent
on the instance of the event)If I could have anything I wanted for my birthday, at the end of January, I'd also love to be able to have package private
@EventListener
-annotated methods that are notpublic
:)Thanks in advance for an amazing piece of software.
The text was updated successfully, but these errors were encountered: