An easy-to-use dynamic service discovery, configuration and service management platform for building cloud native applications.
A branch version of Nacos adapted for JDK 17 and SpringBoot 3. This version is still in the testing stage and should not be used in production environments.

Nacos for SpringBoot 3

Nacos /nɑ:kəʊs/ 是 Naming and Configuration Service 的首字母缩写,是一个更易于构建云原生应用的动态服务发现、配置管理和服务管理平台。Nacos for SpringBoot 3 是一个正在孵化的项目,由本人负责代码的演进与项目的推动工作。

GraalVM Native Image 的理论与实践

分享自王良老师的文章,要想更好的使用 Native Image,首先就是要了解其理论知识,点击进来看看吧。

异步拉取和风天气API

在上一篇文章《并发编排与响应式初步》,我们已经对CompletableFuture的功能进行了深入的探讨,并简要介绍了Reactor响应式流相关的概念。然而,要熟练掌握异步任务编排并非一朝一夕之事,尤其是在需要处理 I/O 密集型应用或者一些特殊场景。

Structured Concurrency

Structured Concurrency is avaiable as an incubator API in the JDK 19. This is still about Project Loom, probably one of the most anticipated features of the JDK 19.

Virtual Thread

In traditional Java high-concurrency projects, context switching of threads brings huge memory overhead. The emergence of thread pools solved these problems to some extent, but Java threads still could not escape the control of the OS. Thus, virtual threads came into being.