Skip to main content
1 vote
0 answers
80 views

I have a EventListener that gets connect requests of a Stomp Spring Server. @Component public class WebSocketEventListener { @EventListener public void handleWebSocketConnectListener(...
Tobia's user avatar
  • 9,609
0 votes
0 answers
104 views

Trying to follow the documentation I would like to send a message to the user's destination and subscribe to it from a browser. The full demo is available here but basically I have @MessageMapping(&...
Jackie's user avatar
  • 24k
0 votes
1 answer
93 views

I have the following demo app this includes a JWTDecoder I can add to fake real auth @Configuration @Profile("fake-jwt") class FakeJwtConfig { @Bean fun jwtDecoder(): JwtDecoder { ...
Jackie's user avatar
  • 24k
0 votes
0 answers
26 views

I am using the STOMP websocket protocol with a Spring Boot backend and an Angular/RxStomp frontend. Clients can subscribe to a channel like /topics/jobs/123 to receive notifications/events about job #...
Xavier Dury's user avatar
  • 1,623
0 votes
0 answers
39 views

I am trying to use StreamBridge to publish messages to GCP pubsub in CloudEvents format and use Avro for schema validation. Here is the message building snippet Message<Person> ce = ...
Ken Bradley's user avatar
1 vote
2 answers
155 views

We have a design where the front end connects to backend nodes by Websockets. Consider an example where Frontend node 1 (connects websocket) -----> server node1 Then server node1 cache the session ...
Pavan Joshi's user avatar
0 votes
1 answer
107 views

I have an application that exposes WebSocket endpoint with following config @Configuration @EnableWebSocketMessageBroker public class WebSocketConfig implements WebSocketMessageBrokerConfigurer { ...
Teodor Mysko's user avatar
3 votes
2 answers
3k views

I'm currently working on library using spring boot 2.7. In the process of migrating to spring boot 3.1.4 I got an error on a class where: import org.springframework.cloud.aws.messaging.core....
Hamza LAHLOU's user avatar
0 votes
0 answers
83 views

In cds-messages.properties we have defined the message 409003=''{0}'' is a required field (*). For the same in error-messages-label-mapping.properties file we have defined the variable names name=...
Sindhu's user avatar
  • 3
2 votes
3 answers
8k views

I've tried the following code: private final NotificationMessagingTemplate notificationMessagingTemplate; public void send(final T payload, final Object groupId) { final ImmutableMap<String, ...
Rafael Ferreira Rocha's user avatar
1 vote
1 answer
956 views

I have an issue which happends periodically in my system, but causes major problems. We use GCP Pub/Sub and sometimes subscriber receives a message with exactly 1 minute delay. In these cases only the ...
Artem Sydorchuk's user avatar
0 votes
1 answer
870 views

I am trying to migrate some application code from Spring Boot with rabbitmq to Spring Boot with SQS. I'd like my application to listen to a queue, but handle multiple object types, like this: @...
jndietz's user avatar
  • 2,065
0 votes
0 answers
182 views

I am using StreamingPull mechanism to receive messages from the Pub/Sub. Here is only 2 overriding for default SubscriberFactory settings: @Bean public SubscriberFactory subscriberFactory( ...
Artem Sydorchuk's user avatar
0 votes
0 answers
1k views

My project currently has test code that connects to an ActiveMQ broker configured as follows: import lombok.extern.slf4j.Slf4j; import org.apache.activemq.broker.BrokerService; @Slf4j public class ...
Keith Bennett's user avatar
0 votes
1 answer
1k views

I have code below to receive message and an attribute from the AWS SQS. The message body is as expected. However, the attribute "sourceId" is always taking the message body json as value. @...
Laodao's user avatar
  • 1,729

15 30 50 per page
1
2 3 4 5
18