RabbitMQ 주제 형식 - 주요 주제 아래 하위 주제
messagingTemplate.convertAndSend("/topic/pushing/" + obj.getCustomerid(), obj);
오류 :
15:06:48.901 [reactor-tcp-io-1] ERROR o.s.m.s.s.StompBrokerRelayMessageHandler - Received ERROR {message=[Invalid destination], content-type=[text/plain], version=[1.0,1.1,1.2], content-length=[53]} session=system text/plain payload='/pushing/2963_ent' is not a valid topic destination
그러나 나는 점에 슬래시를 대체,이 형식 /topic/pushing.{organizationId}로 변경하는 경우, 그것을 잘 작동하고 :
messagingTemplate.convertAndSend("/topic/pushing." + obj.getCustomerid(), obj);
어떻게하면 슬래시를 유지할 수 있고 기본 주제 아래에 하위 주제가 있는지 알 수 있습니다.