Skip to content

Commit b01fb2d

Browse files
committed
update to Spring Boot 2.3.0.M3
1 parent e2f8404 commit b01fb2d

File tree

8 files changed

+14
-5
lines changed

8 files changed

+14
-5
lines changed

integration/client-requester/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.2.5.RELEASE</version>
8+
<version>2.3.0.M3</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example</groupId>

integration/client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.2.5.RELEASE</version>
8+
<version>2.3.0.M3</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example</groupId>

integration/client/src/main/java/com/example/demo/DemoApplication.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ public static void main(String[] args) {
2727
SpringApplication.run(DemoApplication.class, args);
2828
}
2929

30+
// see PR: https://github.com/spring-projects/spring-boot/pull/18834
3031
@Bean
3132
public ClientRSocketConnector clientRSocketConnector() {
3233
ClientRSocketConnector clientRSocketConnector = new ClientRSocketConnector("localhost", 7000);
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
logging.level.org.springframework.integration=DEBUG
22

3+
# auto configure ClientRSocketConnector via tcp
4+
#spring.integration.rsocket.client.port=7000
5+
#spring.integration.rsocket.client.host=localhost
36

7+
# auto configure ClientRSocketConnector via websocket
8+
#spring.integration.rsocket.client.uri=ws://localhost:7000/rsocket

integration/server-boot-messagemapping/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.2.5.RELEASE</version>
8+
<version>2.3.0.M3</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example</groupId>

integration/server-boot/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.2.5.RELEASE</version>
8+
<version>2.3.0.M3</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example</groupId>

integration/server-boot/src/main/resources/application.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@ spring.rsocket.server.port=7000
22
spring.rsocket.server.transport=tcp
33

44
logging.level.org.springframework.integration=DEBUG
5+
6+
# auto configure spring integration rsocket server.
7+
spring.integration.rsocket.server.messageMappingEnabled=true

integration/server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.2.5.RELEASE</version>
8+
<version>2.3.0.M3</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example</groupId>

0 commit comments

Comments
 (0)