Skip to content

Commit 965b97b

Browse files
committed
polishing
1 parent 9b3b7a3 commit 965b97b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ projects: [spring-framework, spring-boot, spring-webflux, spring-messaging]
1212

1313
= Building Chat Application with Kotlin, Spring Boot, WebFlux & RSocket
1414

15-
== Introduction
16-
1715
The tutorial shows you how to build a simple chat application using Spring Boot and Kotlin. You will learn about the benefits of using Kotlin for server-side development from a syntax perspective.
1816

1917
We’ll start with a minimal implementation of the application, and we will evolve it step by step.At the start, the application will generate and display fake messages and use the classical blocking request-response model to get data to the UI.Through the tutorial, we are going to evolve the application by adding persistence and extensions, and migrating to a non-blocking streaming style for serving the data from the backend to the UI.
@@ -1422,6 +1420,8 @@ fun `test that messages streamed to the API is stored`() {
14221420
}
14231421
-----
14241422

1423+
== Summary
1424+
14251425
This was the final part in the tutorial. We started with a simple chat application in which the UI was polling for new messages while the backend was blocking when running the database queries. We gradually added features to the application and migrated it to the reactive Spring stack. The backend is now fully asynchronous, making use of Spring WebFlux and Kotlin coroutines.
14261426

14271427
include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/footer.adoc[]

0 commit comments

Comments
 (0)