作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Spring 可以做到这一点。有人有代码示例吗?
最佳答案
如果您想通知 Bean 有关某事,只需调用一个方法:
@Service
public class Notifier {
@Autowired
private Notified notified;
public void something() {
notified.notify(..);
}
}
但是事件处理通常是异步的。在这种情况下,您必须创建一个新的Thread
(或使用Java 5以来的executors framework),传递对/注入(inject)目标bean的引用,并让它通知它。
如果您想通知多个 bean,但不知 Prop 体是哪个,则使用 event mechanism spring 提供了观察者模式的实现。
关于java - 如何在 Spring 中将事件发送到另一个 bean?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3597716/
我是一名优秀的程序员,十分优秀!