📄 testlistener.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -