项目启动时就执行某些操作、@Scheduled定时项目启动时执行一次

在开发中,有时候我们会想在项目启动时就执行某些操作,如将某些存在数据库里的数据刷到内存里以便在项目里快速使用这些数据、跑一些批处理。

  此处介绍两类方法:

第一类:

  项目启动时,利用spring容器初始化bean来实现。

  共3种方法: (1)通过@PostConstruct方法实现初始化bean进行操作

        (2)通过在bean相关的xml配置文件中配置init-method方法

        (3)通过bean实现InitializingBean接口

第二类:

  项目启动后,通过quartz,立即执行该操作。

  (4)通过org.springframework.scheduling.quartz.SimpleTriggerBean方式,可以配置间隔多长时间执行一次任务,如就是指定3秒执行一次任务。

 

  下面逐一介绍这4种方法:

方法一:@PostConstruct方法

  在实现类和方法上加注解,类上加bean注解,方法上加@PostConstruct注解。

复制代码
 1 //本人此类是在将黑名单从数据库中查询出来,并放到内存
 2 @Service("phoneBlacklistCache")
 3 public class PhoneBlacklistCache {
 4   public List phoneBlacklist = new ArrayList();
 6   //次注解是操作的关键
 9   @PostConstruct
10   public void init(){     
11     //想进行的操作
12     //比如:查询数据库,写到内存
13     }
14 }
复制代码

 

方法二:init-method方法

  在xml文件里配置bean,bean的配置中配置init-method方法(该方法配置成你想要执行的操作方法)。

  定义类文件。

复制代码
1  public class PhoneBlacklistCache {
2     public List phoneBlacklist = new ArrayList();
3    public void init(){     
4      //想进行的操作
5      //比如:查询数据库,写到内存
6      }
7  }
复制代码

 

方法三:InitializingBean方法

  定义相应类实现InitializingBean接口。

复制代码
1  public class PhoneBlacklistCache implements InitializingBean{
2       public List phoneBlacklist = new ArrayList();
3       @Override
4       public void afterPropertiesSet() throws Exception {     
5        //想进行的操作
6        //比如:查询数据库,写到内存
7      }
8  }
复制代码

  其中,afterPropertiesSet()方法里写想要操作的代码。

 

方法四:quartz方法

  通过将SimpleTriggerBean配置成项目启动后立即执行,且重复执行次数配置成0,不重复执行。即可达到项目启动立即执行一此操作的目的。

具体配置如下:

  1、我的项目是springMVC框架,在web.xml中作如下配置:

复制代码
1   
2     contextConfigLocation  
3       
4              classpath:conf/spring-config.xml,  
5              classpath:conf/quartz-config.xml
6           
7  
  
复制代码

  2、然后在quartz-config.xml中做如下配置

复制代码
 1 
 2 
 9     
10     
11         
12             
13         
14         
15             xxxxxx(你在QuartzJob中的方法)
16         
17     
18 
19     
20     
21         
22         
23         
24         
25     
26     
27     
28     
29         
30             
31                 
32             
33         
34     
35 

你可能感兴趣的:(项目启动时就执行某些操作、@Scheduled定时项目启动时执行一次)