All Projects → SAP-archive → spring-cloud-sap

SAP-archive / spring-cloud-sap

Licence: other
Spring Cloud Connectors for SAP HANA Cloud Platform (HCP) and SAP HANA DB platform

Programming Languages

java
68154 projects - #9 most used programming language

Important Notice

SAP has decided to stop the maintenance of this open source project and hence it'll soon be sunsetted and archived.

Going forward, please look at SAP Cloud Platform Appliation Programming Model as the recommended approach to develop cloud applications with SAP Cloud Platform.

Spring Cloud Connector for SAP Cloud Platform

This project provides Cloud Connectors for SAP Cloud Platform to be used in conjunction with the other connectors of the Spring Cloud project. More specifically, it adds SAP Cloud Platfom as an alternative runtime environment supported by Spring Cloud.

For more information regarding Cloud Connectors please refer to the respective documentation:

The project contains three submodules:

Getting Started

The connectors are written for Maven; simply include the appropriate dependencies for your build system.

Including cloud connectors

Include the connector for each cloud platform you want to be discoverable. Including multiple connectors is perfectly fine; each connector will determine whether it should be active in a particular environment.

<!-- to use Spring Cloud for development -->
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-localconfig-connector</artifactId>
    <version>1.2.0.RELEASE</version>
</dependency>

<!-- If you intend to deploy your app to a Cloud Foundry environment within SAP HCP-->
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-cloudfoundry-connector</artifactId>
    <version>1.2.0.RELEASE</version>
</dependency>
<dependency>
    <groupId>com.sap.hana.cloud</groupId>
    <artifactId>spring-cloud-cloudfoundry-hana-service-connector</artifactId>
    <version>1.0.4.RELEASE</version>
</dependency>

<!-- If you intend to deploy the app to SAP HANA Cloud Platform-->
<dependency>
    <groupId>com.sap.hana.cloud</groupId>
    <artifactId>spring-cloud-sap-connector</artifactId>
    <version>1.0.4.RELEASE</version>
</dependency>

Spring applications

Add the spring-service-connector in addition to your cloud connectors:

<dependency>
	<groupId>org.springframework.cloud</groupId>
	<artifactId>spring-cloud-spring-service-connector</artifactId>
	<version>1.2.0.RELEASE</version>
</dependency>

Sample application

A simple sample application is provided here: https://github.com/SAP/cloud-hello-spring-cloud

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].