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.

Project Leyden

Leyden项目计划最早于2020年5月份左右提出,距该文章已经被讨论了2年多。作为Java未来的改进方向,与其并行的还有其他5类JDK Project,包括:Valhalla、Amber、Loom、Panama、Portola。此前我们已经通过虚拟线程(Virtual Thread)了解了Loom相关的内容。在这5大Project中最为复杂且意义最为深远的当属Leyden计划。

Java Agent

JavaAgent是一个JVM插件,它能够利用jvm提供的 Instrumentation API(Java1.5开始提供)实现字节码修改的功能。Agent分为2种:主程序运行前的Agent,主程序之后运行的Agent(Jdk1.6增加)。

HashMap

HashMap 基于哈希表的 Map 接口进行实现,是以 key-value 的存储形式进行存放键值对。HashMap 的实现是不同步的,这意味着它不是线程安全的。他的 key、value 都可以为 null。此外,HashMap 中的映射不是有序的。