外置 tomcat启动Spring Boot程序模式下解决过滤器注入bean的空指针问题

Posted 记录点点滴滴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了外置 tomcat启动Spring Boot程序模式下解决过滤器注入bean的空指针问题相关的知识,希望对你有一定的参考价值。

  在上一篇博文中,一般是可以解决过滤器注入bean的空指针问题的,但我们跑在服务器上的Spring程序一般是使用外置tomcat来启动的,

1      public static void main(String[] args) throws InterruptedException {
2          ApplicationContext context = SpringApplication.run(Application.class, args);
3          SpringContextUtil.setApplicationContext(context);
4      }

这与我们在ide上直接run Application.java是不一样的,也会发生空指针异常,因为直接启动tomcat的方式上面的第三行没有执行,context注入失败。因此我们需要换一种Spring context的注入方式

 1 @Component
 2 public class SpringContextUtil implements ApplicationContextAware {
 3     private static ApplicationContext applicationContext;
 4     public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
 5         SpringContextUtil.applicationContext = applicationContext;
 6     }
 7     public static ApplicationContext getApplicationContext() {
 8         return applicationContext;
 9     }
10     
11     //通过名字获取上下文中的bean
12     public static Object getBean(String name){
13         return applicationContext.getBean(name);
14     }
15     
16     //通过类型获取上下文中的bean
17     public static Object getBean(Class<?> requiredType){
18         return applicationContext.getBean(requiredType);
19     }
20 }

就可以正常使用Bean组件了,经验证 问题得以解决

以上是关于外置 tomcat启动Spring Boot程序模式下解决过滤器注入bean的空指针问题的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu外置tomcat部署应用;访问项目时去掉项目名

外置容器创建及启动ApplicationContext过程

外置容器创建及启动ApplicationContext过程

Springboot项目部署到外置Tomcat

Spring Boot 外置配置文件

SpringBoot技术专题「Tomcat技术专区」用正确的姿势如何用外置tomcat配置