Spring Cloud - Cloud Foundry Service Broker 1.0.3

孟文栋
2023-12-01
Overview
Learn

This project provides a framework for building a Spring Boot project to quickly implement a service broker for Cloud Foundry.

NOTE New releases of this project are being developed with the name Spring Cloud Open Service Broker.
Spring Boot Config

The recommended way to get started using Spring Cloud Open Service Broker in your project is with a dependency management system. One of the snippets below can be copied and pasted into your build.

With Maven:

org.springframework.cloud spring-cloud-cloudfoundry-service-broker ${springCloudServiceBrokerVersion} org.springframework.cloud spring-cloud-cloudfoundry-service-broker ${springCloudServiceBrokerVersion} tests test

With Gradle:

dependencies {
compile(“org.springframework.cloud:spring-cloud-cloudfoundry-service-broker:1.0.2.RELEASE”)
testCompile(group: “org.springframework.cloud”, name: “spring-cloud-cloudfoundry-service-broker”,

 类似资料: