相关文章推荐
重情义的炒粉  ·  MYSQL数据库(九)- ...·  1 年前    · 
聪明的红酒  ·  ModuleNotFoundError: ...·  1 年前    · 

Spring (IntegrationFlowContext):动态注册到同一个websocket服务器的新路径

内容来源于 Stack Overflow,遵循 CC BY-SA 4.0 许可协议进行翻译与使用。IT领域专用引擎提供翻译支持

腾讯云小微IT领域专用引擎提供翻译支持

原文
Stack Overflow用户 修改于2020-02-26
  • 该问题已被编辑
  • 提问者: Stack Overflow用户
  • 提问时间: 2020-02-26 06:21

我试图使用JavaDsl实现spring解决方案,方法是遵循链接即 https://github.com/joshlong/techtips/tree/master/examples/spring-integration-4.1-websockets-example

我通过订阅路径(即/messages)和我的stomp客户端成功地测试了它。

接下来,通过向IntegrationFlowContext注册集成流,我尝试了同样的方法。

它在服务器端成功执行,但是当我试图通过我的stomp客户端提出请求时,我收到了404的例外。

在浏览日志时,我发现以前"AbstractHandlerMapping“是映射到 ResourceHttpRequestHandler 的,现在是映射到 ResourceHttpRequestHandler 了。

与Spring管理的集成流(成功)

DEBUG [http-nio-8081-exec-1] o.s.c.l.LogFormatUtils: GET "/messages/websocket", parameters={}
DEBUG [http-nio-8081-exec-1] o.s.w.s.h.AbstractHandlerMapping: Mapped to org.springframework.web.socket.sockjs.support.SockJsHttpRequestHandler@46185a1b
DEBUG [http-nio-8081-exec-1] o.s.w.s.s.s.AbstractSockJsService: Processing transport request: GET http://localhost:8081/messages/websocket
DEBUG [http-nio-8081-exec-1] o.s.w.s.FrameworkServlet: Completed 101 SWITCHING_PROTOCOLS
DEBUG [http-nio-8081-exec-1] o.s.w.s.h.LoggingWebSocketHandlerDecorator: New StandardWebSocketSession[id=e11b5ef5-d2e5-e5c7-819d-493f42f4a7c8, uri=ws://localhost:8081/messages/websocket]

和IntegrationFlow上下文托管流(Failure)

DEBUG [http-nio-8081-exec-1] o.s.c.l.LogFormatUtils: GET "/messages/websocket", parameters={}
DEBUG [http-nio-8081-exec-1] o.s.w.s.h.AbstractHandlerMapping: Mapped to ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]
DEBUG [http-nio-8081-exec-1] o.s.w.s.r.ResourceHttpRequestHandler: Resource not found
DEBUG [http-nio-8081-exec-1] o.s.w.s.FrameworkServlet: Completed 404 NOT_FOUND
DEBUG [http-nio-8081-exec-1] o.s.c.l.LogFormatUtils: "ERROR" dispatch for GET "/error", parameters={}
DEBUG [http-nio-8081-exec-1] o.s.w.s.h.AbstractHandlerMapping: Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest)
DEBUG [http-nio-8081-exec-1] o.s.w.s.m.m.a.AbstractMessageConverterMethodProcessor: Using 'application/json', given [*/*] and supported [application/json, application/*+json, application/json, application/*+json]
DEBUG [http-nio-8081-exec-1] o.s.c.l.LogFormatUtils: Writing [{timestamp=Tue Feb 25 17:06:58 IST 
浏览 10 关注 0 得票数 1
  • 得票数为Stack Overflow原文数据
原文
回答于2020-02-26
得票数 0

由于 Mapped to ... 中的 getHandler(HttpServletRequest request) 逻辑,您有一个不同的 AbstractHandlerMapping

Object handler = getHandlerInternal(request);
    if (handler == null) {
        handler = getDefaultHandler();
    if (handler == null) {
        return null;
    // Bean name or resolved handler?
    if (handler instanceof String) {
        String handlerName = (String) handler;
        handler = obtainApplicationContext().getBean(handlerName);