Skip to content

新手指南

yong.teng edited this page Apr 22, 2020 · 14 revisions

关于框架

buessionframework 不是一个全新的轮子,而是结合日常实际工作中对一些开源类库的二次封装和抽象,以及一些常用工具的封装,如:geoip、io。

框架的优点

  1. 统一了对各类包的版本依赖
  2. 简化了部分框架的使用,降低了学习成本
  3. 封装了部分日常中常用功能

下载及使用

Maven

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

Gradle

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

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

Clone this wiki locally