easy-http-boot-starter 是easy-http的springBoot版本,使用更简单,并且支持接口级别的拦截器和解码器
项目 | easy-http-spring | spring-boot |
---|---|---|
版本 | 1.1.X | 2.1.X+ |
版本 | 1.7.X | 2.2.X+ |
<dependency>
<groupId>com.github.vizaizai</groupId>
<artifactId>easy-http-boot-starter</artifactId>
<version>1.7.0</version>
</dependency>
普通版请移步: easy-http
3.1 配置
开启:启动类或者配置上注解@EnableEasyHttp
value是包路径,默认是被注解包的路径。
easy-http:
base-endpoint: http://127.0.0.1:8080
#base-endpoints: #按客户端名字定义请求地址。如@EasyHttpClient(value = "book"),这个接口将使用127.0.0.1:8888
# book: http://127.0.0.1:8888
retry:
enable: true #是否开启重试
max-attempts: 1
interval-time: 0
request-log: false #是否开启请求日志
3.2 编写接口
@EasyHttpClient
public interface BookHttpService {
@Get("/books/{id}")
ApiResult<Book> getBookById(@Var("id") String id);
}
3.3 注入使用
@Autowired
private BookHttpService bookHttpService;
请移步: easy-http
如您有好的建议,或者有任何疑问,可联系我
- QQ: 274550900
- Email: [email protected]