Skip to content

新手指南

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

关于框架

buession-security 主要对安全框架、安全验证、安全认证、鉴权、加密等等的封装和扩展。

框架的优点

  1. 统一了对各类包的版本依赖
  2. 简化了部分框架的使用,降低了学习成本

下载及使用

Maven

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

Gradle

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

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

Clone this wiki locally