Incorporated the review comments on the pull request.

This commit is contained in:
CHANDRAKANT Kumar 2020-08-16 01:15:24 +05:30
parent 4daecbbc89
commit 3e2ce28afb
4 changed files with 24 additions and 46 deletions

View File

@ -1,25 +0,0 @@
/target/
!.mvn/wrapper/maven-wrapper.jar
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
/nbproject/private/
/build/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

View File

@ -1,7 +1,7 @@
## Spring WebFlux Concurrency ## Spring WebFlux Concurrency
This module contains articles about concurrency model in Spring WebFlux. This module contains articles about concurrency model in Spring WebFlux.
Please note that this assumes Mongo and Kafka to be running on the local machine on default configurations.
### Relevant Articles: ### Relevant Articles:

View File

@ -3,6 +3,9 @@ package com.baeldung.webflux;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* Please note that this assumes Mongo and Kafka to be running on the local machine on default configurations.
*/
@SpringBootApplication @SpringBootApplication
public class Application { public class Application {