安装
盘古服务开发框架已经发布到 Maven 中央仓库,直接使用如下方法安装使用即可。
依赖管理模块
盘古资源依赖声明管理模块。所有盘古引用都应该依赖这个模块。
- Maven坐标
- Gradle DSL
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.gitee.pulanos.pangu</groupId>
<artifactId>pangu-dependencies</artifactId>
<version>${最新稳定版本}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
implementation 'com.gitee.pulanos.pangu:pangu-dependencies:${最新稳定版本}'
基础 Starter 模块
盘古启动、中心化配置、动态日志等基础能力自动装配模块。
- Maven坐标
- Gradle DSL
<dependency>
<groupId>com.gitee.pulanos.pangu</groupId>
<artifactId>pangu-spring-boot-starter</artifactId>
</dependency>
implementation 'com.gitee.pulanos.pangu:pangu-spring-boot-starter:${最新稳定版本}'
代码生成插件
盘古代码生成器 Maven 插件。插件参数配置。
- Maven坐标
- Gradle DSL
<dependency>
<groupId>com.gitee.pulanos.pangu</groupId>
<artifactId>pangu-generator-maven-plugin</artifactId>
</dependency>
implementation 'com.gitee.pulanos.pangu:pangu-generator-maven-plugin:${最新稳定版本}'
下一步
继续阅读其它章节获取你想要的答案或通过我们的 开发者社区 寻求更多帮助。