Support @RSocketExchange for annotated responders
See gh-30936
This commit is contained in:
committed by
rstoyanchev
parent
376223c87d
commit
4cd9e2e9b0
@@ -52,6 +52,7 @@ import org.springframework.messaging.rsocket.MetadataExtractor;
|
||||
import org.springframework.messaging.rsocket.RSocketRequester;
|
||||
import org.springframework.messaging.rsocket.RSocketStrategies;
|
||||
import org.springframework.messaging.rsocket.annotation.ConnectMapping;
|
||||
import org.springframework.messaging.rsocket.service.RSocketExchange;
|
||||
import org.springframework.util.Assert;
|
||||
import org.springframework.util.MimeType;
|
||||
import org.springframework.util.MimeTypeUtils;
|
||||
@@ -60,8 +61,9 @@ import org.springframework.util.StringUtils;
|
||||
|
||||
/**
|
||||
* Extension of {@link MessageMappingMessageHandler} for handling RSocket
|
||||
* requests with {@link ConnectMapping @ConnectMapping} and
|
||||
* {@link MessageMapping @MessageMapping} methods.
|
||||
* requests with {@link ConnectMapping @ConnectMapping},
|
||||
* {@link MessageMapping @MessageMapping}
|
||||
* and {@link RSocketExchange @RSocketExchange} methods.
|
||||
*
|
||||
* <p>For server scenarios this class can be declared as a bean in Spring
|
||||
* configuration and that would detect {@code @MessageMapping} methods in
|
||||
@@ -77,13 +79,14 @@ import org.springframework.util.StringUtils;
|
||||
* {@link org.springframework.messaging.rsocket.RSocketRequester.Builder#rsocketConnector
|
||||
* RSocketRequester.Builder}.
|
||||
*
|
||||
* <p>For {@code @MessageMapping} methods, this class automatically determines
|
||||
* the RSocket interaction type based on the input and output cardinality of the
|
||||
* method. See the
|
||||
* <p>For {@code @MessageMapping} and {@code @RSocketExchange} methods,
|
||||
* this class automatically determines the RSocket interaction type
|
||||
* based on the input and output cardinality of the method. See the
|
||||
* <a href="https://docs.spring.io/spring/docs/current/spring-framework-reference/web-reactive.html#rsocket-annot-responders">
|
||||
* "Annotated Responders"</a> section of the Spring Framework reference for more details.
|
||||
*
|
||||
* @author Rossen Stoyanchev
|
||||
* @author Olga Maciaszek-Sharma
|
||||
* @since 5.2
|
||||
*/
|
||||
public class RSocketMessageHandler extends MessageMappingMessageHandler {
|
||||
@@ -322,6 +325,15 @@ public class RSocketMessageHandler extends MessageMappingMessageHandler {
|
||||
RSocketFrameTypeMessageCondition.CONNECT_CONDITION,
|
||||
new DestinationPatternsMessageCondition(patterns, obtainRouteMatcher()));
|
||||
}
|
||||
RSocketExchange ann3 = AnnotatedElementUtils.findMergedAnnotation(element, RSocketExchange.class);
|
||||
if (ann3 != null && StringUtils.hasText(ann3.value())) {
|
||||
String[] destinations = new String[]{ann3.value()};
|
||||
return new CompositeMessageCondition(
|
||||
RSocketFrameTypeMessageCondition.EMPTY_CONDITION,
|
||||
new DestinationPatternsMessageCondition(processDestinations(destinations),
|
||||
obtainRouteMatcher())
|
||||
);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -402,7 +414,8 @@ public class RSocketMessageHandler extends MessageMappingMessageHandler {
|
||||
* connection. Such a method can also start requests to the client but that
|
||||
* must be done decoupled from handling and from the current thread.
|
||||
* <p>Subsequent requests on the connection can be handled with
|
||||
* {@link MessageMapping MessageMapping} methods.
|
||||
* {@link MessageMapping MessageMapping}
|
||||
* and {@link RSocketExchange RSocketExchange} methods.
|
||||
*/
|
||||
public SocketAcceptor responder() {
|
||||
return (setupPayload, sendingRSocket) -> {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2022 the original author or authors.
|
||||
* Copyright 2002-2023 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -33,7 +33,6 @@ import reactor.test.StepVerifier;
|
||||
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.messaging.handler.annotation.MessageMapping;
|
||||
import org.springframework.messaging.rsocket.RSocketRequester;
|
||||
import org.springframework.messaging.rsocket.RSocketStrategies;
|
||||
import org.springframework.messaging.rsocket.annotation.support.RSocketMessageHandler;
|
||||
@@ -45,6 +44,7 @@ import org.springframework.util.MimeTypeUtils;
|
||||
* Integration tests with RSocket Service client.
|
||||
*
|
||||
* @author Rossen Stoyanchev
|
||||
* @author Olga Maciaszek-Sharma
|
||||
*/
|
||||
class RSocketServiceIntegrationTests {
|
||||
|
||||
@@ -57,7 +57,7 @@ class RSocketServiceIntegrationTests {
|
||||
|
||||
@BeforeAll
|
||||
@SuppressWarnings("ConstantConditions")
|
||||
static void setupOnce() throws Exception {
|
||||
static void setupOnce() {
|
||||
|
||||
MimeType metadataMimeType = MimeTypeUtils.parseMimeType(
|
||||
WellKnownMimeType.MESSAGE_RSOCKET_COMPOSITE_METADATA.getString());
|
||||
@@ -112,28 +112,26 @@ class RSocketServiceIntegrationTests {
|
||||
}
|
||||
|
||||
|
||||
@Controller
|
||||
@RSocketExchange("echo")
|
||||
interface Service {
|
||||
|
||||
@RSocketExchange("echo-async")
|
||||
@RSocketExchange("async")
|
||||
Mono<String> echoAsync(String payload);
|
||||
|
||||
@RSocketExchange("echo-stream")
|
||||
@RSocketExchange("stream")
|
||||
Flux<String> echoStream(String payload);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@Controller
|
||||
static class ServerController {
|
||||
static class ServerController implements Service {
|
||||
|
||||
@MessageMapping("echo-async")
|
||||
Mono<String> echoAsync(String payload) {
|
||||
public Mono<String> echoAsync(String payload) {
|
||||
return Mono.delay(Duration.ofMillis(10)).map(aLong -> payload + " async");
|
||||
}
|
||||
|
||||
@MessageMapping("echo-stream")
|
||||
Flux<String> echoStream(String payload) {
|
||||
public Flux<String> echoStream(String payload) {
|
||||
return Flux.interval(Duration.ofMillis(10)).map(aLong -> payload + " " + aLong);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user