WebSocket无法注入属性的问题及解决方案
踩坑一:
原因:
是因为Spring对象的创建都是以单例模式创建的,在启动时只创建一次WebSocket。而WebSocketServer在每个连接请求到来时,都会new一个对象。所以当你启动项目时,你想要注入的对象已经注入进去,但是当用户连接是,新创建的websocket对象没有你要注入的对象,所以会报NullPointerException
解决:
通过static关键字让webSocketService属于WebSocketServer类
private static WebSocketService webSocketService; //通过static关键字让webSocketService属于WebSocketServer类 @Autowired//注入到WebSocketServer类的webSocketService属性里 public void setKefuService(WebSocketService webSocketService){ WebSocketServer.webSocketService= webSocketService; }
踩坑二:
使用@ServerEndpoint
声明的websocket服务器中自动注入
- 错误方法,这样无法从容器中获取
@ServerEndpoint(value = "/chat/{username}") @Service public class WebSocketServer { @Resource // @Autowired private RabbitTemplate rabbitTemplate; //null }
- 解决:使用上下文获取
@ServerEndpoint(value = "/chat/{username}") @Service public class WebSocketServer { /* * 提供一个spring context上下文(解决方案) */ private static ApplicationContext context; public static void setApplicationContext(ApplicationContext applicationContext) { WebSocketServer.context = applicationContext; } }
- 在启动类中传入上下文
@SpringBootApplication public class TalkApplication { public static void main(String[] args) { //解决springboot和websocket之间使用@autowired注入为空问题 ConfigurableApplicationContext applicationContext = SpringApplication.run(TalkApplication.class, args); //这里将Spring Application注入到websocket类中定义的Application中。 WebSocketServer.setApplicationContext(applicationContext); } }
- 在使用的地方通过上下文去获取服务
context.getBean()
;
public void sendSimpleQueue(String message) { String queueName = "talk"; // 在使用的地方通过上下文去获取服务context.getBean(); RabbitTemplate rabbitTemplate = context.getBean(RabbitTemplate.class); rabbitTemplate.convertAndSend(queueName, message); }
到此这篇关于WebSocket无法注入属性的文章就介绍到这了,更多相关WebSocket无法注入属性内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
springboot+Oauth2实现自定义AuthenticationManager和认证path
本篇文章主要介绍了springboot+Oauth2实现自定义AuthenticationManager和认证path,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-09-09Spring中@Autowired、@Qualifier、@Resource注解的区别
这篇文章主要介绍了Spring中@Autowired、@Qualifier、@Resource注解的区别,@Autowired 可以单独使用,如果单独使用,它将按类型装配,因此,如果在容器中声明了多个相同类型的bean,则会出现问题,因为 @Autowired 不知道要使用哪个bean来注入,需要的朋友可以参考下2023-11-11
最新评论