> For the complete documentation index, see [llms.txt](https://160668873.gitbook.io/tkey-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://160668873.gitbook.io/tkey-docs/tkey-client-java-kai-fa-jie-duan/dev-rest-client.md).

# 自己封装的 REST Client

## TKey Client 开发环境

* [参考 TKey SSO Server 环境](https://github.com/cdk8s/tkey-docs/blob/master/server/dev.md)

## TKey Client 项目核心组件版本

* [参考 TKey SSO Server 环境](https://github.com/cdk8s/tkey-docs/blob/master/server/dev.md)

## Maven 中央库已发布

* 中央库地址：<https://search.maven.org/search?q=tkey-sso-client-starter-rest>
* Maven

```
<tkey-sso-client-starter-rest.version>1.0.0</tkey-sso-client-starter-rest.version>


<dependency>
    <groupId>com.cdk8s.tkey</groupId>
    <artifactId>tkey-sso-client-starter-rest</artifactId>
    <version>${tkey-sso-client-starter-rest.version}</version>
</dependency>
```

* Gradle Groovy DSL：

```
implementation 'com.cdk8s.tkey:tkey-sso-client-starter-rest:1.0.0'
```

* Gradle Kotlin DSL

```
compile("com.cdk8s.tkey:tkey-sso-client-starter-rest:1.0.0")
```
