如何在jpbm 4.2 EventListener中获取spring上下文引用?

发布于 2024-09-27 11:34:47 字数 500 浏览 4 评论 0原文

如何从 EventListener 实例中获取 spring 上下文,该实例在流程转换后会收到通知:

<transition g="-36,11" name="A" to="B">
   <event-listener class="com.test.handlers.MyRequestHandler">
   </event-listener>
</transition>

我希望能够

@Override
public void notify(EventListenerExecution execution) throws Exception {
..
MyOtherSpringBean sender = (MyOtherSpringBean )applicationContext.get("MyOtherSpringBean ");

在提前感谢

Denis中执行类似以下操作

How to obtain spring context from within EventListener instance which gets notified following this transition of process:

<transition g="-36,11" name="A" to="B">
   <event-listener class="com.test.handlers.MyRequestHandler">
   </event-listener>
</transition>

I want to be able to do something like the following in my

@Override
public void notify(EventListenerExecution execution) throws Exception {
..
MyOtherSpringBean sender = (MyOtherSpringBean )applicationContext.get("MyOtherSpringBean ");

Thanks in advance,

Denis

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鲜血染红嫁衣 2024-10-04 11:34:47

您可以让您的 EventListener 成为 spring 上下文的一部分,因此您可以将其他 bean 注入其中(使用 @Autowired private MyOtherSpringBean bean

请参阅 此线程,以及此问题

You can have your EventListener be part of the spring context, and hence you can inject other beans into it (using @Autowired private MyOtherSpringBean bean)

See this thread, and this issue

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文