1,完成模块启动架构搭建

2,完成hotModule模块配置文件创建
3,模块启动日志完成
This commit is contained in:
userA
2023-07-21 02:17:04 +08:00
parent 98e912682f
commit a55490c184
19 changed files with 352 additions and 20 deletions

View File

@@ -61,7 +61,6 @@ public class FileCacheTest {
FileCacheManager manager = new FileCacheManager(List.of(fileCache));
manager.start();
System.out.println(fileCache.get("barrage","src"));
fileCache.append(1,"barrage","src");
}
@@ -109,7 +108,6 @@ public class FileCacheTest {
FileCacheManager manager = new FileCacheManager(List.of(fileCache));
manager.start();
System.out.println(manager.addFileCache(fileCache));
}
@Test