🎯 Spring环境使用
在 Forest 依赖加入好之后,就可以构建 HTTP 请求的接口了
如还没有添加好依赖或配置好,请参见《Spring环境安装》和《Spring环境配置》
在 Forest 中,所有的 HTTP 请求信息都要绑定到某一个接口的方法上,不需要编写具体的代码去发送请求。请求发送方通过调用事先定义好 HTTP 请求信息的接口方法,自动去执行 HTTP 发送请求的过程,其具体发送请求信息就是该方法对应绑定的 HTTP 请求信息
# Hello World
创建一个interface
,比如命名为MyClient
,并创建一个接口方法名为helloForest
,用@Get
注解修饰之。
public interface MyClient {
@Get("http://localhost:8080/hello")
String helloForest();
}
1
2
3
4
5
6
2
3
4
5
6
通过@Get
注解,将上面的MyClient
接口中的helloForest()
方法绑定了一个 HTTP 请求,
其 URL 为http://localhost:8080/hello
,并默认使用GET
方式,且将请求响应的数据以String
的方式返回给调用者
若您已有定义好的 Forest 请求接口(比如名为 com.yoursite.client.MyClient
),那就可以开始愉快使用它了。
# 扫描接口
在上一节内容中已经进行了对接口所在包扫描的配置,如没有请参见《Spring环境配置》
# 调用接口
@Component
public class MyService {
@Resource
private MyClient myClient;
public void testClient() {
String result = myClient.helloForest();
System.out.println(result);
}
}
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
帮助我们改善此文档 (opens new window)
上次更新: 2024/02/27, 12:43:35