Files
2025-03-30 16:08:34 +08:00
..
2024-03-28 14:48:22 +08:00
2025-03-30 16:08:34 +08:00
2022-12-02 20:39:13 +08:00
2022-12-02 20:39:13 +08: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