Merge pull request #9878 from kcacademic/webflux-threads
Webflux threads
This commit is contained in:
commit
2214774f55
|
@ -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/
|
|
@ -1,9 +0,0 @@
|
|||
## Spring WebFlux Concurrency
|
||||
|
||||
This module contains articles about concurrency model in Spring WebFlux.
|
||||
Please note that some of the code assumes Mongo and Kafka are running on the local machine on default configurations.
|
||||
If you want to experiment with Tomcat/Jetty instead of Netty, just uncomment the lines in pom.xml and rebuild.
|
||||
|
||||
### Relevant Articles:
|
||||
|
||||
- [Concurrency in Spring WebFlux]()
|
|
@ -3,6 +3,10 @@ package com.baeldung.webflux;
|
|||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
/**
|
||||
* Please note we assume Mongo and Kafka are running in the local machine and on default configuration.
|
||||
* Additionally, if you want to experiment with Tomcat/Jetty instead of Netty, just uncomment the lines in pom.xml and rebuild.
|
||||
*/
|
||||
@SpringBootApplication
|
||||
public class Application {
|
||||
|
||||
|
|
Loading…
Reference in New Issue