diff options
author | Alexander Alexeev | 2016-11-17 19:55:22 +0700 |
---|---|---|
committer | Vitaly Takmazov | 2016-11-17 16:01:57 +0300 |
commit | c9ff580b94e9f39850a232242a5747e7cb7aa203 (patch) | |
tree | 43dad9216f372f0a51084afe90c358398039954c /juick-ws/src | |
parent | eafa1eebd9b50306c18bfdf287b3b458104868c0 (diff) |
bugfix: Injection of autowired dependencies failed; nested exception is java.lang.IllegalStateException: Only one TransactionManagementConfigurer may exist
Diffstat (limited to 'juick-ws/src')
-rw-r--r-- | juick-ws/src/main/java/com/juick/ws/configuration/WebsocketMvcConfiguration.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/juick-ws/src/main/java/com/juick/ws/configuration/WebsocketMvcConfiguration.java b/juick-ws/src/main/java/com/juick/ws/configuration/WebsocketMvcConfiguration.java index 90ab7195..4ae0a04a 100644 --- a/juick-ws/src/main/java/com/juick/ws/configuration/WebsocketMvcConfiguration.java +++ b/juick-ws/src/main/java/com/juick/ws/configuration/WebsocketMvcConfiguration.java @@ -35,7 +35,6 @@ import java.util.List; @ComponentScan(basePackages = {"com.juick.ws.controllers"}) @EnableWebSocket @PropertySource("classpath:juick.conf") -@Import(DataConfiguration.class) public class WebsocketMvcConfiguration extends WebMvcConfigurationSupport implements WebSocketConfigurer { @Inject private Environment env; |