spring面试
1.spring事件的实现原理理,写出常⽤用的⼏几个事件。
a. 事件机制:Spring中的事件机制是⼀一个观察者模式的实现.观察者模式就是⼀一个⽬目标对象管理理所有相依于它的观察者对
象,并且在它本身的状态改变时主动发出通知.Spring的事件由ApplicationContext发布。
b. spring默认存在的事件:
- ContextStartedEvent:ApplicationContext启动后触发的事件
- ContextStoppedEvent:ApplicationContext停⽌止后触发的事件
- ContextRefreshedEvent:ApplicationContext初始化或刷新完成后触发的事件
- ContextClosedEvent:ApplicationContext关闭后触发的事件