为什么从 jhipster 中删除了对 Atmosphere 的支持?
Why is the support for Atmosphere removed from jhipster?
我想为 websocket 和回退机制实现氛围。但在最新版本的 jhipster 中,Atmosphere 的支持已经被移除。现在只支持 spring websockets。我应该采取什么步骤从 spring websockets 转移到 atmosphere?
最初有一些 troubles when integrating atmosphere to spring. That led JHipster project to drop atmosphere support. AFAIK the last issue 在 spring-boot 中,因为它是固定的,Atmosphere 应该可以很好地与 Spring 配合使用。不幸的是,JHipster 项目没有重新添加 Atmosphere 支持,因此您必须自己集成框架。
我想你可以看看这个application that shows how to enable Atmosphere in spring-boot. The configuration is done in Java Config here。
如果您想在 Atmosphere 服务中使用 DI,您可能对此感兴趣 page。
我想为 websocket 和回退机制实现氛围。但在最新版本的 jhipster 中,Atmosphere 的支持已经被移除。现在只支持 spring websockets。我应该采取什么步骤从 spring websockets 转移到 atmosphere?
最初有一些 troubles when integrating atmosphere to spring. That led JHipster project to drop atmosphere support. AFAIK the last issue 在 spring-boot 中,因为它是固定的,Atmosphere 应该可以很好地与 Spring 配合使用。不幸的是,JHipster 项目没有重新添加 Atmosphere 支持,因此您必须自己集成框架。
我想你可以看看这个application that shows how to enable Atmosphere in spring-boot. The configuration is done in Java Config here。
如果您想在 Atmosphere 服务中使用 DI,您可能对此感兴趣 page。