File tree Expand file tree Collapse file tree 8 files changed +14
-5
lines changed
server-boot-messagemapping Expand file tree Collapse file tree 8 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.springframework.boot</groupId >
7
7
<artifactId >spring-boot-starter-parent</artifactId >
8
- <version >2.2.5.RELEASE </version >
8
+ <version >2.3.0.M3 </version >
9
9
<relativePath /> <!-- lookup parent from repository -->
10
10
</parent >
11
11
<groupId >com.example</groupId >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.springframework.boot</groupId >
7
7
<artifactId >spring-boot-starter-parent</artifactId >
8
- <version >2.2.5.RELEASE </version >
8
+ <version >2.3.0.M3 </version >
9
9
<relativePath /> <!-- lookup parent from repository -->
10
10
</parent >
11
11
<groupId >com.example</groupId >
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ public static void main(String[] args) {
27
27
SpringApplication .run (DemoApplication .class , args );
28
28
}
29
29
30
+ // see PR: https://github.com/spring-projects/spring-boot/pull/18834
30
31
@ Bean
31
32
public ClientRSocketConnector clientRSocketConnector () {
32
33
ClientRSocketConnector clientRSocketConnector = new ClientRSocketConnector ("localhost" , 7000 );
Original file line number Diff line number Diff line change 1
1
logging.level.org.springframework.integration =DEBUG
2
2
3
+ # auto configure ClientRSocketConnector via tcp
4
+ # spring.integration.rsocket.client.port=7000
5
+ # spring.integration.rsocket.client.host=localhost
3
6
7
+ # auto configure ClientRSocketConnector via websocket
8
+ # spring.integration.rsocket.client.uri=ws://localhost:7000/rsocket
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.springframework.boot</groupId >
7
7
<artifactId >spring-boot-starter-parent</artifactId >
8
- <version >2.2.5.RELEASE </version >
8
+ <version >2.3.0.M3 </version >
9
9
<relativePath /> <!-- lookup parent from repository -->
10
10
</parent >
11
11
<groupId >com.example</groupId >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.springframework.boot</groupId >
7
7
<artifactId >spring-boot-starter-parent</artifactId >
8
- <version >2.2.5.RELEASE </version >
8
+ <version >2.3.0.M3 </version >
9
9
<relativePath /> <!-- lookup parent from repository -->
10
10
</parent >
11
11
<groupId >com.example</groupId >
Original file line number Diff line number Diff line change @@ -2,3 +2,6 @@ spring.rsocket.server.port=7000
2
2
spring.rsocket.server.transport =tcp
3
3
4
4
logging.level.org.springframework.integration =DEBUG
5
+
6
+ # auto configure spring integration rsocket server.
7
+ spring.integration.rsocket.server.messageMappingEnabled =true
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.springframework.boot</groupId >
7
7
<artifactId >spring-boot-starter-parent</artifactId >
8
- <version >2.2.5.RELEASE </version >
8
+ <version >2.3.0.M3 </version >
9
9
<relativePath /> <!-- lookup parent from repository -->
10
10
</parent >
11
11
<groupId >com.example</groupId >
You can’t perform that action at this time.
0 commit comments