mirror of
https://github.com/tiennm99/zfoo.git
synced 2026-05-14 06:59:29 +00:00
English | 简体中文
Ⅰ. Introduction
- hotswap Hot update code, no need to stop the server, no additional configuration, one line of code to enable hot update
Ⅱ. Stand-alone hot update
- directly pass in the class file that needs hot update
// pass in the class file that needs to be updated HotSwapUtils.hotswapClass(bytes);
Ⅲ. Distributed Hot Update
-
upload the class files that need to be updated to the zookeeper registration center, and other servers monitor the class files that need to be updated, and update the code when they are monitored
-
tank Distributed hot update code implementation