testlistener.java
来自「jms程序,这是一个jms小程序给大家简单」· Java 代码 · 共 18 行
JAVA
18 行
package com.andyao.listener;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.stereotype.Service;
@Service
public class TestListener implements ApplicationListener {
public void onApplicationEvent(ApplicationEvent event) {
if (event instanceof TestEvent) {
TestEvent cast = (TestEvent)event;
cast.go();
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?