-
Hi,
I would really appreciate your help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @v-nafiseh Thanks for using the Discussions tab of the Spring Petclinic microservices project, it is the right place. The The other microservices use a non-reactive stack. Tomcat is used as the web container. I hope I've answered your questions Antoine |
Beta Was this translation helpful? Give feedback.
Hi @v-nafiseh
Thanks for using the Discussions tab of the Spring Petclinic microservices project, it is the right place.
We have different microservices. Each could use its own stack.
The
api-gateway
microservice uses Spring Boot Gateway. Itsspring-cloud-starter-gateway
starter depends on thespring-boot-starter-webflux
which uses the reactive stack (reactor and netty). Jetty is used as the web container.The other microservices use a non-reactive stack. Tomcat is used as the web container.
Java 21 virtual threading is not enabled in this project. So Tomcat uses physical threads.
The default Spring Boot configuration has not been customised by setting the
server.tomcat.threads.max
proper…