Skip to content

新手指南

yong.teng edited this page Apr 22, 2020 · 1 revision

关于框架

buession-springcloud 主要对 org.springframework.cloud 的二次封装,最主要的目的就是统一了对库依赖的版本。

框架的优点

  1. 统一了对各类三方库依赖的版本

下载及使用

Maven

<dependency>
    <groupId>com.buession.springcloud</groupId>
    <artifactId>buession-springcloud-xxx</artifactId>
    <version>x.x.x</version>
</dependency>

Gradle

compile group: 'com.buession.springcloud', name: 'buession-springcloud-xxx', version: 'x.x.x'

其中,artifactId 中的 xxx 表示对应的子模块;version 中的 x.x.x 代表版本号,根据需要使用特定版本,建议使用最新版本。

Clone this wiki locally