跳到主要内容

安装

盘古服务开发框架已经发布到 Maven 中央仓库,直接使用如下方法安装使用即可。

依赖管理模块

盘古资源依赖声明管理模块。所有盘古引用都应该依赖这个模块。

    <dependencyManagement>
<dependencies>
<dependency>
<groupId>com.gitee.pulanos.pangu</groupId>
<artifactId>pangu-dependencies</artifactId>
<version>${最新稳定版本}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

基础 Starter 模块

盘古启动、中心化配置、动态日志等基础能力自动装配模块。

<dependency>
<groupId>com.gitee.pulanos.pangu</groupId>
<artifactId>pangu-spring-boot-starter</artifactId>
</dependency>

代码生成插件

盘古代码生成器 Maven 插件。插件参数配置

<dependency>
<groupId>com.gitee.pulanos.pangu</groupId>
<artifactId>pangu-generator-maven-plugin</artifactId>
</dependency>

下一步

继续阅读其它章节获取你想要的答案或通过我们的 开发者社区 寻求更多帮助。