欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Websocket--注入Bean,空指针异常

程序员文章站 2022-05-23 12:57:01
...

在websocketEndpoint中,使用@Autowired一些列注解注入Bean时候,一直无法注入,包空指针。
环境:JDK 8     Tomcat:8.5  SpringBoot 1.5.4

其中尝试了很多种方式,都无法满足,第一种解决解决办法,

@ServerEndpoint(value="/websocketTest/{userId}",configurator=SpringConfigurator.class)

如果使用ContextLoaderListener(Spring方式初始化Bean),configurator可直接配置为SpringConfigurator,如果使用的是DispatchServlet来初始化Bean,推荐使用ApplicationContextAware,创建工具类的方法来创建bean。如下:
第二种解决办法:
在websocket节点上直接使用该configurator

@ServerEndpoint(value="/websocketTest/{userId}", configurator = SpringContextHelper.class)

// 自定义配置类
@Component
public class SpringContextHelper extends ServerEndpointConfig.Configurator implements ApplicationContextAware {

   //  通过手动注入applicationContext上下文获取Bean

    private static volatile BeanFactory context;

    @Override
    public <T> T getEndpointInstance(Class<T> clazz) throws InstantiationException {
        return context.getBean(clazz);
    }

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException
    {
        SpringContextHelper.context = applicationContext;
    }

}