欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring 可能会用到的一些功能

程序员文章站 2024-02-21 17:05:10
...
private static ScheduledExecutorService mScheduledExecutorService = Executors.newScheduledThreadPool(1);
  mScheduledExecutorService.scheduleWithFixedDelay(new Runnable() {
            public void run() {
              
        }, 10*1,60, SECONDS);
        多线程 定时器 延迟10秒,每60秒启动一次
public class SelfDeceptionController  implements ApplicationListener<ContextRefreshedEvent> {
// 加载这个类的时候 运行这个方法 只执行一次   配合webxml注解  实现 服务器启动 自动执行该方法
    @PostConstruct
    public  void start () {

    }

//  服务器启动  所有bean加载后     自动执行该方法
    @Override
    public void onApplicationEvent(ContextRefreshedEvent contextRefreshedEvent) {
        System.out.println("-----所有Bean载入完成---");
      
    }
}
相关标签: ssm框架