Spring Boot's traditional setup, relying on a servlet-based architecture, is not suitable for real-time applications that require sub-millisecond latency.
The abstraction and feature-rich environment of Spring Boot, while beneficial for standard REST APIs, can introduce overhead and performance issues in real-time scenarios.
In a traditional Spring Boot app, each incoming request spawns a thread, leading to potential thread pool bottlenecks and blocked requests.
Node.js, with its event-driven, single-threaded model and non-blocking I/O, is better suited for real-time applications.