feat: 新增 sa-token-forest 插件,用于在 Http 请求处理器模块整合 Forest

This commit is contained in:
click33 2025-04-26 23:50:49 +08:00
parent 0ae51a1b56
commit b53eac9269
6 changed files with 116 additions and 0 deletions

View File

@ -40,6 +40,7 @@
<redisson.version>3.45.0</redisson.version>
<hutool-cache.version>5.8.36</hutool-cache.version>
<caffeine.version>3.2.0</caffeine.version>
<forest.version>1.6.4</forest.version>
</properties>
<dependencyManagement>
@ -274,6 +275,13 @@
<version>${caffeine.version}</version>
</dependency>
<!-- Forest -->
<dependency>
<groupId>com.dtflys.forest</groupId>
<artifactId>forest-core</artifactId>
<version>${forest.version}</version>
</dependency>
<!-- sa-token 自身依赖 -->
<dependency>
<groupId>cn.dev33</groupId>

View File

@ -36,6 +36,7 @@
<module>sa-token-redisson</module>
<module>sa-token-redisx</module>
<module>sa-token-serializer-features</module>
<module>sa-token-forest</module>
<!-- SpringBoot 环境插件 -->
<module>sa-token-redis-template</module>

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>sa-token-plugin</artifactId>
<groupId>cn.dev33</groupId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>sa-token-forest</artifactId>
<dependencies>
<dependency>
<groupId>cn.dev33</groupId>
<artifactId>sa-token-core</artifactId>
</dependency>
<dependency>
<groupId>com.dtflys.forest</groupId>
<artifactId>forest-core</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,47 @@
/*
* Copyright 2020-2099 sa-token.cc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cn.dev33.satoken.http;
import cn.dev33.satoken.SaManager;
import com.dtflys.forest.Forest;
import java.util.Map;
/**
* Http 转换器 Forest 版实现
*
* @author click33
* @since 1.43.0
*/
public class SaHttpTemplateForForest implements SaHttpTemplate {
@Override
public String get(String url) {
SaManager.log.debug("发起请求GET{}", url);
String res = Forest.get(url).executeAsString();
SaManager.log.debug("返回结果:{}", res);
return res;
}
@Override
public String postByFormData(String url, Map<String, Object> params) {
SaManager.log.debug("发起请求POST{}\t参数{}", url, params);
String res = Forest.post(url).addBody(params).executeAsString();
SaManager.log.debug("返回结果:{}", res);
return res;
}
}

View File

@ -0,0 +1,34 @@
/*
* Copyright 2020-2099 sa-token.cc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cn.dev33.satoken.plugin;
import cn.dev33.satoken.SaManager;
import cn.dev33.satoken.http.SaHttpTemplateForForest;
/**
* SaToken 插件安装Http 请求处理器 - Forest
*
* @author click33
* @since 1.43.0
*/
public class SaTokenPluginForForest implements SaTokenPlugin {
@Override
public void install() {
SaManager.setSaHttpTemplate(new SaHttpTemplateForForest());
}
}

View File

@ -0,0 +1 @@
cn.dev33.satoken.plugin.SaTokenPluginForForest