Spring Cloud OpenFeign: Difference between revisions
Jump to navigation
Jump to search
Line 58: | Line 58: | ||
| valign="top" | | | valign="top" | | ||
* [[Spring Exception Handling]] | * [[Spring Exception Handling]] | ||
* [[Spring Security]] | * [[Spring Security]] | ||
* [[Apache Camel]] | * [[Apache Camel]] | ||
* [[Netflix Eureka]] | * [[Netflix Eureka]] | ||
* [[HTTP Security]] | |||
* [[Java Lambda]] | * [[Java Lambda]] | ||
* [[Camunda]] | * [[Camunda]] | ||
Line 69: | Line 69: | ||
| valign="top" | | | valign="top" | | ||
* [[JSON Schema Validation]] | |||
| valign="top" | | | valign="top" | | ||
|} | |} |
Revision as of 19:44, 6 February 2024
<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
| ||