From 32111158ba5fd2481511cc2b5f09f921a1463bc1 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Mon, 8 Aug 2016 11:17:45 +0300 Subject: juick-ws: fix Environment injection --- .../java/com/juick/ws/configuration/WebsocketConfiguration.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'juick-ws/src/main/java/com/juick/ws/configuration/WebsocketConfiguration.java') diff --git a/juick-ws/src/main/java/com/juick/ws/configuration/WebsocketConfiguration.java b/juick-ws/src/main/java/com/juick/ws/configuration/WebsocketConfiguration.java index 086ae4ce..495a3c91 100644 --- a/juick-ws/src/main/java/com/juick/ws/configuration/WebsocketConfiguration.java +++ b/juick-ws/src/main/java/com/juick/ws/configuration/WebsocketConfiguration.java @@ -96,25 +96,25 @@ public class WebsocketConfiguration extends WebMvcConfigurationSupport implement } @Bean public XMPPConnection ws() { - XMPPConnection ws = new XMPPConnection(); + XMPPConnection ws = new XMPPConnection(env); ws.init(); return ws; } @Bean public XMPPComponent xmpp() { - XMPPComponent xmpp = new XMPPComponent(); + XMPPComponent xmpp = new XMPPComponent(env); xmpp.init(); return xmpp; } @Bean public CrosspostComponent crosspost() { - CrosspostComponent crosspost = new CrosspostComponent(); + CrosspostComponent crosspost = new CrosspostComponent(env); crosspost.init(); return crosspost; } @Bean public PushComponent push() { - PushComponent push = new PushComponent(); + PushComponent push = new PushComponent(env); push.init(); return push; } -- cgit v1.2.3