Sping下添加启动时运行的方法

如何在spring项目中添加启动时运行的方法

1.继承InitializingBean
2.在spring配置文件中添加bean

添加类

添加一个类,继承自InitializingBean

public class InitService implements InitializingBean {

    @verride
    public void afterPropertiesSet() throws Exception {
    // write you initialize code
    }
}

添加配置文件

在spring的配置文件中添加这个bean

<bean class="com.google.map.service.impl.InitGatewayService">
    bean>

完成上面两步之后,在spring容器启动的时候,就会执行该bean中的方法。

Spring注入

也可以使用Spring注入的方式,这样就不用再配置文件中写bean了。
具体方法是在InitService上加注解@Service,删去配置文件中的bean。

特别说明,这种使用@Service方式注解的bean,必须实现一个Interface,由于InitService实现了InitializingBean 是一个interface,所以可以实现。

你可能感兴趣的:(Java)