目錄
What Are Virtual Threads and Why They Matter
How to Use Virtual Threads in Practice
Option 2: Using StructuredTaskScope (Recommended)
When to Use Virtual Threads (and When Not To)
✅ Use virtual threads when:
❌ Avoid for CPU-intensive work:
Integrating with Existing Frameworks
Spring Boot (6 )
Tomcat, Jetty, Netty
JDBC Warning
Performance Tips and Pitfalls
Bottom Line
首頁 Java java教程 掌握Java 21虛擬線程用於高持續應用程序

掌握Java 21虛擬線程用於高持續應用程序

Jul 28, 2025 am 01:20 AM

Java 21的虚拟线程显著提升了高并发应用的性能,1. 它通过JVM管理轻量级线程,使单机可轻松运行数十万并发任务;2. 适用于I/O密集型场景如Web服务、微服务和批量处理;3. 现有阻塞代码无需重写,只需在虚拟线程中运行;4. 推荐使用StructuredTaskScope管理并发任务以避免资源泄漏;5. 不适用于CPU密集型任务,应继续使用平台线程或并行流;6. 主流框架如Spring Boot 6 、Tomcat、Jetty已支持,可通过配置启用;7. 注意JDBC等阻塞调用会占用载体线程,影响整体并发;8. 避免池化虚拟线程、滥用ThreadLocal,并采用异步日志以发挥最佳性能,正确使用虚拟线程将大幅提升吞吐量、降低延迟并简化代码。

Mastering Java 21 Virtual Threads for High-Concurrency Applications

Java 21’s introduction of virtual threads marks a turning point for building high-concurrency applications. Unlike traditional platform threads (which are OS-level and expensive to create), virtual threads are lightweight, managed by the JVM, and make it dramatically easier to scale applications handling thousands or even millions of concurrent tasks—without rewriting your entire codebase.

Mastering Java 21 Virtual Threads for High-Concurrency Applications

You don’t need to become a concurrency expert overnight, but understanding how to effectively use virtual threads is now essential for modern Java performance.


What Are Virtual Threads and Why They Matter

Virtual threads are part of Project Loom, designed to simplify concurrent programming in Java. Here’s the core idea:

Mastering Java 21 Virtual Threads for High-Concurrency Applications
  • Platform threads (the old way): Each thread maps 1:1 to an OS thread. Creating too many causes high memory usage and context-switching overhead.
  • Virtual threads: Many virtual threads run on a small number of underlying platform threads. The JVM handles scheduling and switching efficiently.

Key benefit: You can now spawn hundreds of thousands of threads without crashing your server.

This is especially useful for:

Mastering Java 21 Virtual Threads for High-Concurrency Applications
  • I/O-heavy applications (web servers, microservices)
  • APIs that call multiple downstream services
  • Batch processing with high parallelism

And the best part? Your existing code often works as-is—you just need to run it on a virtual thread.


How to Use Virtual Threads in Practice

Using virtual threads is surprisingly simple. You don’t need new frameworks or complex APIs—just use Thread.startVirtualThread() or structured concurrency via StructuredTaskScope.

Option 1: Direct Use with startVirtualThread()

Thread.startVirtualThread(() -> {
    System.out.println("Running on a virtual thread: "   Thread.currentThread());
    // Simulate I/O work
    try { Thread.sleep(1000); } catch (InterruptedException e) {}
    System.out.println("Done");
});

No thread pool needed. Each call spawns a new virtual thread.

For managing multiple concurrent tasks safely, StructuredTaskScope ensures all child tasks complete (or fail) together, with proper cancellation and error handling.

try (var scope = new StructuredTaskScope.ShutdownOnFailure()) {
    var subtask1 = scope.fork(() -> fetchUser(1));
    var subtask2 = scope.fork(() -> fetchOrder(1));

    scope.join();           // Wait for all tasks
    scope.throwIfFailed();  // Propagate any failure

    User user = subtask1.get();
    Order order = subtask2.get();
}

✅ This replaces messy CompletableFuture chains and avoids resource leaks.


When to Use Virtual Threads (and When Not To)

Not every workload benefits from virtual threads. Know the sweet spot:

✅ Use virtual threads when:

  • Tasks spend time waiting (I/O, network calls, database queries)
  • You have high parallelism needs (e.g., handling 10K HTTP requests)
  • You’re using blocking code (like traditional InputStream, JDBC, etc.)

❌ Avoid for CPU-intensive work:

  • Number crunching
  • Image/video processing
  • Heavy computations

Why? Virtual threads don’t reduce CPU load. For CPU-bound tasks, stick to parallel streams or fixed-size thread pools like ForkJoinPool.

? Rule of thumb: If your thread is mostly waiting, virtual threads win. If it’s busy, stick to platform threads.


Integrating with Existing Frameworks

You don’t need to wait for frameworks to "support" virtual threads—many already work seamlessly.

Spring Boot (6 )

Enable virtual threads in application.properties:

server.tomcat.threads.virtual.enabled=true

Or customize the executor:

@Bean
public TaskExecutor virtualThreadExecutor() {
    var factory = Executors.newThreadPerTaskExecutor(Thread.ofVirtual().factory());
    return new ConcurrentTaskExecutor(Executors.newThreadPerTaskExecutor(
        Thread.ofVirtual().factory()
    ));
}

Tomcat, Jetty, Netty

Recent versions support virtual threads as the request-handling mechanism. When enabled, each HTTP request runs on its own virtual thread—no more thread pool bottlenecks.

JDBC Warning

Most JDBC drivers are blocking and synchronous, which can tie up carrier threads. While virtual threads help, true async DB access (like R2DBC) is better for maximum throughput.

⚠️ Long-blocking calls (e.g., slow JDBC queries) still reduce overall concurrency because they occupy the underlying platform thread ("carrier thread").


Performance Tips and Pitfalls

Here’s what to watch for:

  • Don’t pool virtual threads: They’re cheap to create. Use newThreadPerTaskExecutor, not fixed thread pools.
  • Avoid thread-local abuse: Virtual threads can create millions of instances—storing large objects in ThreadLocal can cause memory issues.
  • Monitor carrier threads: The JVM uses a fixed pool of platform threads to run virtual ones. If all are blocked (e.g., by slow JDBC), your app stalls.
  • Use async logging: If your logging framework blocks I/O, it defeats the purpose. Consider async appenders.

Bottom Line

Java 21’s virtual threads aren’t just a performance tweak—they’re a paradigm shift in how we write concurrent applications.

You can now:

  • Write simple, readable, blocking-style code
  • Handle massive concurrency with minimal hardware
  • Reduce reliance on complex reactive frameworks (like Reactor or RxJava) unless you need backpressure

Start by running your existing blocking I/O tasks on virtual threads. Measure the difference. You’ll likely see higher throughput, lower latency, and simpler code.

Basically, if you’re building server-side Java applications in 2024 and not using virtual threads, you’re leaving performance and developer productivity on the table.

以上是掌握Java 21虛擬線程用於高持續應用程序的詳細內容。更多資訊請關注PHP中文網其他相關文章!

本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Stock Market GPT

Stock Market GPT

人工智慧支援投資研究,做出更明智的決策

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

熱門話題

如何在Java中的類Path中添加JAR文件? 如何在Java中的類Path中添加JAR文件? Sep 21, 2025 am 05:09 AM

使用-cp參數可將JAR加入類路徑,使JVM能加載其內類與資源,如java-cplibrary.jarcom.example.Main,支持多JAR用分號或冒號分隔,也可通過CLASSPATH環境變量或MANIFEST.MF配置。

如何在Java中創建文件 如何在Java中創建文件 Sep 21, 2025 am 03:54 AM

UseFile.createNewFile()tocreateafileonlyifitdoesn’texist,avoidingoverwriting;2.PreferFiles.createFile()fromNIO.2formodern,safefilecreationthatfailsifthefileexists;3.UseFileWriterorPrintWriterwhencreatingandimmediatelywritingcontent,withFileWriterover

如何在Java中實現接口? 如何在Java中實現接口? Sep 18, 2025 am 05:31 AM

使用implements關鍵字實現接口,類需提供接口中所有方法的具體實現,支持多接口時用逗號分隔,確保方法為public,Java8後默認和靜態方法無需重寫。

使用Java服務提供商界面(SPI)構建可擴展應用程序 使用Java服務提供商界面(SPI)構建可擴展應用程序 Sep 21, 2025 am 03:50 AM

JavaSPI是JDK內置的服務發現機制,通過ServiceLoader實現面向接口的動態擴展。 1.定義服務接口並在META-INF/services/下創建以接口全名為名的文件,寫入實現類全限定名;2.使用ServiceLoader.load()加載實現類,JVM會自動讀取配置並實例化;3.設計時應明確接口契約、支持優先級與條件加載、提供默認實現;4.應用場景包括多支付渠道接入和插件化校驗器;5.注意性能、類路徑、異常隔離、線程安全和版本兼容性;6.在Java9 可結合模塊系統使用provid

了解Java仿製藥和通配符 了解Java仿製藥和通配符 Sep 20, 2025 am 01:58 AM

Javagenericsprovidecompile-timetypesafetyandeliminatecastingbyallowingtypeparametersonclasses,interfaces,andmethods;wildcards(?,?extendsType,?superType)handleunknowntypeswithflexibility.1.UseunboundedwildcardwhentypeisirrelevantandonlyreadingasObject

深入理解HTTP持久連接:在同一Socket上發送多個請求的策略與實踐 深入理解HTTP持久連接:在同一Socket上發送多個請求的策略與實踐 Sep 21, 2025 pm 01:51 PM

本文深入探討了在同一TCP Socket上發送多個HTTP請求的機制,即HTTP持久連接(Keep-Alive)。文章澄清了HTTP/1.x與HTTP/2協議的區別,強調了服務器端對持久連接支持的重要性,以及如何正確處理Connection: close響應頭。通過分析常見錯誤和提供最佳實踐,旨在幫助開發者構建高效且健壯的HTTP客戶端。

Java教程:如何扁平化嵌套ArrayList並將其元素填充到數組中 Java教程:如何扁平化嵌套ArrayList並將其元素填充到數組中 Sep 18, 2025 am 07:24 AM

本教程詳細介紹了在Java中如何高效地處理包含其他ArrayList的嵌套ArrayList,並將其所有內部元素合併到一個單一的數組中。文章將通過Java 8 Stream API的flatMap操作,提供兩種核心解決方案:先扁平化為列表再填充數組,以及直接創建新數組,以滿足不同場景的需求。

如何讀取Java中的屬性文件? 如何讀取Java中的屬性文件? Sep 16, 2025 am 05:01 AM

使用Properties類可輕鬆讀取Java配置文件。 1.將config.properties放入資源目錄,通過getClassLoader().getResourceAsStream()加載並調用load()方法讀取數據庫配置。 2.若文件在外部路徑,使用FileInputStream加載。 3.使用getProperty(key,defaultValue)處理缺失鍵並提供默認值,確保異常處理和輸入驗證。

See all articles