zoukankan      html  css  js  c++  java
  • Springboot启动前执行方法

    1.实现ServletContextAware接口并重写其setServletContext方法

    @Component
    public class TestStarted implements ServletContextAware {
        /**
         * 在填充普通bean属性之后但在初始化之前调用
         * 类似于initializingbean的afterpropertiesset或自定义init方法的回调
         *
         */
        @Override
        public void setServletContext(ServletContext servletContext) {
            System.out.println("setServletContext方法");
        }
    }
    

    注意:该方法会在填充完普通Bean的属性,但是还没有进行Bean的初始化之前执行

    2.实现ServletContextListener接口

    /**
     * 在初始化Web应用程序中的任何过滤器或servlet之前,将通知所有servletContextListener上下文初始化。
     */
    @Override
    public void contextInitialized(ServletContextEvent sce) {
        //ServletContext servletContext = sce.getServletContext();
        System.out.println("执行contextInitialized方法");
    }
    

    3.将要执行的方法所在的类交个spring容器扫描(@Component),并且在要执行的方法上添加@PostConstruct注解或者静态代码块执行

    @Component
    public class Test2 {
        //静态代码块会在依赖注入后自动执行,并优先执行
        static{
            System.out.println("---static--");
        }
        /**
         *  @Postcontruct’在依赖注入完成后自动调用
         */
        @PostConstruct
        public static void haha(){
            System.out.println("@Postcontruct’在依赖注入完成后自动调用");
        }
    }
    

    4.实现ApplicationRunner接口

    /**
     * 用于指示bean包含在SpringApplication中时应运行的接口。可以定义多个applicationrunner bean
     * 在同一应用程序上下文中,可以使用有序接口或@order注释对其进行排序。
     */
    @Override
    public void run(ApplicationArguments args) throws Exception {
        System.out.println("ApplicationRunner的run方法");
    }
    

    5.实现CommandLineRunner接口

    /**
     * 用于指示bean包含在SpringApplication中时应运行的接口。可以在同一应用程序上下文中定义多个commandlinerunner bean,并且可以使用有序接口或@order注释对其进行排序。
     * 如果需要访问applicationArguments而不是原始字符串数组,请考虑使用applicationrunner。
     * 
     */
    @Override
    public void run(String... ) throws Exception {
        System.out.println("CommandLineRunner的run方法");
    }
    

    来源:https://www.cnblogs.com/lsgspace/p/10508180.html

    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,如有问题, 可评论咨询.
  • 相关阅读:
    c++函数模板
    C++左移运算符重载
    and or bool and a or b 原理解释
    Python的垃圾回收机制
    《C++ 101条建议》学习笔记——第一章快速入门
    在应用中嵌入Python:转
    使用C++扩展Python的功能 转自:http://blog.csdn.net/magictong/article/details/8897568#comments
    python扩展实现方法--python与c混和编程 转自:http://www.cnblogs.com/btchenguang/archive/2012/09/04/2670849.html
    python文件头的#-*- coding: utf-8 -*- 的作用
    Pythhon 字典 key in dict 比 dict.has_key (key)效率高 为什么?
  • 原文地址:https://www.cnblogs.com/Dean0731/p/14476534.html
Copyright © 2011-2022 走看看