How to add custom ApplicationContextInitializer to a spring boot application?

前端 未结 2 1031
我寻月下人不归
我寻月下人不归 2020-12-14 19:12

One way to add custom ApplicationContextInitializer to spring web application is to add it in the web.xml file as shown below.


    <         


        
2条回答
  •  心在旅途
    2020-12-14 19:57

    You can register them in META-INF/spring.factories

    org.springframework.context.ApplicationContextInitializer=\
    com.example.YourInitializer
    

    You can also add them on your SpringApplication before running it

    application.addInitializers(YourInitializer.class);
    application.run(args);
    

    Or on the builder

    new SpringApplicationBuilder(YourApp.class)
        .initializers(YourInitializer.class);
        .run(args);
    

    It wasn't obvious from the doc at first glance so I opened #5091 to check.

提交回复
热议问题