You can find the GitHub repo for this lab here: https://github.com/JosePaumard/2025_JavaOne-Loom-lab
One of the most exciting features delivered by the JDK 21 are Virtual Threads developped by the Loom project. Their promise is to enable the "simple thread-per-request style to scale with near-optimal hardware utilization". Before Virtual Threads, this could could only be achieved with reactive programming, which gives you excellent throughput, but with patternsthat are hard to write, hard to read, hard to debug, and hard to profile. It gives you excellent performance, but at the cost of maintainability. This hands-on lab takes you through the writing of a virtual thread based application, that uses structured concurrency to parallelize your requests and scoped values to pass your sensitive information without relying on method parameters. You will see the patterns of code the Loom project gives you, to achieve the same throughput as a classical reactive application. You will then be able to compare the patterns of code of both approaches, to choose which one you prefer.