Set Up Your Local Infrastructure to Develop with SAP Cloud SDK
Set up your system to create an SAP Business Technology Platform application with the SAP Cloud SDK.
Overview
Prerequisites
Steps
To develop with the SAP Cloud SDK for Java you will need to have two things installed:
- Java 17
- Maven 3.9+
If you have the required software installed already you can skip this step. You can check your the versions of your installations via the commands listed at the end of this step.
Note: Java 17 is only available on SAP Business Technology Platform: Cloud Foundry
For Windows 7+ or Windows Server 2003+ adhere to the following steps:
Install
Chocolatey.Chocolateyis a package manager for Windows which will be useful for installing necessary components. Install it by following the Chocolatey installation guide.Install the Java Development Kit:
Shellwinget install Microsoft.OpenJDK.17Install Maven:
Shellchoco install maven
For Mac OS adhere to the following steps:
Install
Homebrew.Homebrewis a package manager for Mac which will be useful for installing necessary components. Install it by opening a terminal and issuing the following command:Shell/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"Install Java Development Kit 8:
Shellbrew update brew install openjdk@17Install Maven:
Shellbrew update brew install maven
To validate that everything is installed correctly you can use the following commands:
javac -version
mvn -versionTo develop your first ‘Hello World’ application with SAP Cloud SDK, you can just use your command line and a simple text editor. However, for larger development projects you can work with the IDE of your choice.
We recommend using Intellij IDEA or Eclipse. Follow the installation instructions of corresponding tools to prepare your IDE. In case you use Eclipse, make sure to install the Maven plugin for Eclipse.
Some of the steps in the upcoming tutorial blogs will fail if you sit behind a corporate proxy. If you cannot escape the proxy, you need to tell Maven where your proxy is located.
To do this, you need to cd to your ~/.m2 directory (e.g. on Windows: C:/Users/<username>/.m2"") and create a file called settings.xml. Then you paste the following content:
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<proxies>
<proxy>
<id>my_corp_proxy</id>
<active>true</active>
<protocol>http</protocol>
<host>proxy</host>
<port>8080</port>
<username></username>
<password></password>
<nonProxyHosts>localhost,127.0.0.1</nonProxyHosts>
</proxy>
</proxies>
</settings>After finishing these steps, you are ready to start the development of your SAP Business Technology Platform applications with SAP Cloud SDK. If you are interested to learn more, stay tuned for the upcoming development topics that we will cover in the following tutorials: available project templates in the SDK, setting up the communication with SAP S/4HANA, deployment on Cloud Foundry, etc.
Resources
Discussion
Share feedback on this tutorial or join the conversation in SAP Community.