1. 重构模块与服务的生成器,使用模板的方式进行支持

(cherry picked from commit 7c45ea5a19)
This commit is contained in:
chenbowen
2025-09-02 17:58:48 +08:00
committed by chenbowen
parent ee6be70fc8
commit 2bb4d1d6c6
29 changed files with 1980 additions and 316 deletions

13
demo-server/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM openjdk:17-jre-slim
# 设置应用目录
WORKDIR /app
# 复制应用文件
COPY target/demo-server.jar /app/demo-server.jar
# 暴露端口
EXPOSE 48100
# 运行应用
ENTRYPOINT ["java", "-jar", "/app/demo-server.jar"]