Spring Cloud OpenFeign: Difference between revisions
Jump to navigation
Jump to search
Line 53: | Line 53: | ||
| valign="top" | | | valign="top" | | ||
* [[JSON Schema Validation]] | * [[JSON Schema Validation]] | ||
* [[Spring Security]] | |||
* [[Netflix Eureka]] | * [[Netflix Eureka]] | ||
Revision as of 00:06, 17 September 2022
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!--
others dependencies
-->
</dependencies>
</dependencyManagement>
|
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-okhttp</artifactId>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-httpclient</artifactId>
</dependency>
</dependencies>
|
References
| ||