标签:ice rgs 图片 print alt 内容 ace tis 场景
示例:
1.定义一个Listener 实现了ApplicationListener 接口
@Component public class MyTestListener implements ApplicationListener{ @Override public void onApplicationEvent(ApplicationEvent event) { System.out.println("向zookeeper注册暴露的服务..."); } }
2.applicationContext.xml 添加如下内容
<context:annotation-config /> <context:component-scan base-package="com.event" />
3.测试
public class SpringEventTest { public static void main(String[] args) { ApplicationContext context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml"); } }
控制台输出:
源码分析
1.先进行断点调试
2.Debug 运行测试类
3.通过 Debug 线程栈分析源码执行过程
应用场景
标签:ice rgs 图片 print alt 内容 ace tis 场景
原文地址:https://www.cnblogs.com/caoxb/p/12490111.html