在某些情况下,有可能你会有这种需求:在Spring/SpringMVC项目中,当Spring/SpringMVC启动完成后,你需要执行一个方法来完成某些事件(比如创建网站地图,比如从订阅Redis服务器等),这个时候,可以使用Tomcat/Servlet容器提供的事件回调机制来完成,但是这样有个问题是:无法使用Spring提供的Annotation,解决方法是: /* * To change this license header, choose License Headers in Proje…
分类: spring java2013-06-19 16:40 8289人阅读 评论(4) 收藏 举报 在某些应用中,我们希望,当spring 容器将所有的bean都初始化完成后,做一个操作(例如:将数据库中的字典,加载到内存中),这时我们可以实现一个接口,如下: package com.yk.test.executor.processor public class InstantiationTracingBeanPostProcessor implements ApplicationListe…
springboot项目启动成功后执行一段代码的两种方式 实现ApplicationRunner接口 package com.lnjecit.lifecycle; import org.springframework.boot.ApplicationArguments; import org.springframework.boot.ApplicationRunner; import org.springframework.core.annotation.Order; import org.sp…
如何让springmvc在启动的时候执行特定的业务处理 java 的 web服务器启动时,经常会做一些特定的业务逻辑处理,比如数据库初始化, 初始化系统参数,读取配置文库等. 很多web服务的中间件,可以 通过这样的思路去实现.比如消息分发服务. 实现方法: 一.Web项目,非Spring 解决方法:实现[ ServletContextListener] 接口 (1).把实现了ServletContextListener 的类配置到[ web.xml] 文件中 <?xml version="…
在Spring Boot应用启动之后立刻执行一段逻辑 1.CommandLineRunner 2.ApplicationRunner 3.传递参数 码农小胖哥:如何在Spring Boot应用启动之后立刻执行一段逻辑 项目启动后立马执行一些逻辑.比如简单的缓存预热,或者上线后的广播之类等等.如果你使用 Spring Boot 框架的话就可以借助其提供的接口CommandLineRunner和 ApplicationRunner来实现. 1.CommandLineRunner org.spring…
@Componentpublic class InitProject implements ApplicationRunner { private static final Logger logger = LoggerFactory.getLogger(InitProject.class); @Override public void run(ApplicationArguments args){ //初始化数据  执行方法 }}…
1.实现方式 实现ApplicationRunner接口 实现CommandLineRunner接口 @Component @Slf4j public class AfterServiceStarted implements ApplicationRunner{ /** * 会在服务启动完成后立即执行 */ @Override public void run(ApplicationArguments args) throws Exception { log.info("Successful se…
第一种方式,用bean的init-method属性 <bean class="com.emax.paycenter.log.LogBridge" init-method="init"></bean> 第二种方式,实现InitializingBean接口 @Component public class TJUnionAgentPayNotifyTCPServer implements InitializingBean { private sta…
1. 前言 不知道你有没有接到这种需求,项目启动后立马执行一些逻辑.比如简单的缓存预热,或者上线后的广播之类等等.如果你使用 Spring Boot 框架的话就可以借助其提供的接口CommandLineRunner和 ApplicationRunner来实现. 2. CommandLineRunner org.springframework.boot.CommandLineRunner 是Spring Boot提供的一个接口,当你实现该接口并将之注入Spring IoC容器后,Spring Bo…
理论 刚好再开发过程中遇到了要在项目启动后自动开启某个服务,由于使用了spring,我在使用了spring的listener,它有onApplicationEvent()方法,在Spring容器将所有的Bean都初始化完成之后,就会执行该方法. 应用场景:很多时候我们想要在某个类加载完毕时干某件事情,但是使用了spring管理对象,我们这个类引用了其他类(可能是更复杂的关联),所以当我们去使用这个类做事情时发现包空指针错误,这是因为我们这个类有可能已经初始化完成,但是引用的其他类不一定初始化完成…