Java Spring Boot: SimpMessagingTemplate send messages are not received by Stomp Endpoints
问题 I can't get the Spring Message Sample to work in Unit tests using the SimpMessagingTemplate to send messages to the Endpoints. I followed the instructions here: https://spring.io/guides/gs/messaging-stomp-websocket/ So far my Controller looks like: @Data @NoArgsConstructor @AllArgsConstructor public static class Message { private Long id; private String value; private long time; } @MessageMapping("/message") @SendTo("/topic/response") public Message slowEndpont(Message message) throws