An open API service indexing awesome lists of open source software.

https://github.com/myibu/springboot-simple-httpclient

support to use simple httpclient in springboot with annotation
https://github.com/myibu/springboot-simple-httpclient

feign springboot

Last synced: 2 months ago
JSON representation

support to use simple httpclient in springboot with annotation

Awesome Lists containing this project

README

          

# springboot-simple-httpclient
support to use simple httpclient in springboot with annotation

## Implements

Scan interface with HttpClient annotated, then use simple httpclient to create beans in spring framework.

## Installation
```bash

com.github.myibu
springboot-simple-httpclient
1.0.0

```

## Examples

Assume than you have defined a interface annotated with HttpClient annotation as following:
```java
@SpringBootAppliction
@EnableHttpClient
public class App {
public static main(String[] args) {
SpringApplication.run(App.class, args);
}
}
```