All Projects → SAP-archive → cloud-enterprise-granny

SAP-archive / cloud-enterprise-granny

Licence: other
A sample address book application demonstrating the interplay of popular open-source libraries. #cloud-sample

Programming Languages

java
68154 projects - #9 most used programming language
javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to cloud-enterprise-granny

Cofoundry.Samples.SPASite
A simple single page application using Cofoundry as a headless CMS
Stars: ✭ 30 (+25%)
Mutual labels:  sample
samplics
Select, weight and analyze complex sample data
Stars: ✭ 24 (+0%)
Mutual labels:  sample
scheduler-framework-sample
This repo is a sample for Kubernetes scheduler framework.
Stars: ✭ 35 (+45.83%)
Mutual labels:  sample
bundler-comparison
Comparison of web resource bundlers. 📦
Stars: ✭ 21 (-12.5%)
Mutual labels:  sample
Fiori-for-iOS-Roadshow-2019
A collection of materials for the joined SAP and Apple Roadshow event.
Stars: ✭ 12 (-50%)
Mutual labels:  sample
kmm-with-cocoapods-sample
This project represents the case when Cocoapods dependencies are added in Kotlin and there is no existing Xcode project
Stars: ✭ 42 (+75%)
Mutual labels:  sample
flutter-animations
medium.com/flutter-jp/implicit-animation-b9d4b7358c28
Stars: ✭ 37 (+54.17%)
Mutual labels:  sample
cloud-function-nodejs-samples
SAP Cloud Platform Functions samples written in Node.JS
Stars: ✭ 14 (-41.67%)
Mutual labels:  sample
cloud-sdk-ios-samples
SAP Cloud Platform SDK for iOS sample apps demonstrating various components and features of the SDK in the context of bigger apps.
Stars: ✭ 20 (-16.67%)
Mutual labels:  sample
cloud-bulletinboard-ads
This is the bulletinboard-ads sample application code used in the openSAP course: Cloud-Native Development with SAP Business Technology Platform (formerly SAP Cloud Platform).
Stars: ✭ 75 (+212.5%)
Mutual labels:  sample
cap-sflight
Using SAP Cloud Application Programming Model and SAP Fiori elements to build a simple travel management app, both with Node.js and Java.
Stars: ✭ 65 (+170.83%)
Mutual labels:  sample
reisen
A simple library to extract video and audio frames from media containers (based on libav).
Stars: ✭ 41 (+70.83%)
Mutual labels:  sample
play-scala-chatroom-example
Play chatroom with Scala API
Stars: ✭ 43 (+79.17%)
Mutual labels:  sample
abap-odata-smoke-test
This ABAP Report performs simple smoke tests for activated ODATA services, providing basic automated testing for your ODATA endpoints.
Stars: ✭ 13 (-45.83%)
Mutual labels:  sample
ARKitSample
ARKitのサンプル
Stars: ✭ 20 (-16.67%)
Mutual labels:  sample
byd-api-samples
A set of Postman collections that enables users to consume SAP Business ByDesign web services.
Stars: ✭ 49 (+104.17%)
Mutual labels:  sample
find-sec-bugs-demos
Repository to showcase various configuration recipes with various technologies
Stars: ✭ 33 (+37.5%)
Mutual labels:  sample
play-java-ebean-example
Example Play application showing Java with Ebean
Stars: ✭ 54 (+125%)
Mutual labels:  sample
db2-samples
Db2 application code, configuration samples, and other examples
Stars: ✭ 56 (+133.33%)
Mutual labels:  sample
arcgisearth-automation-api
Use ArcGIS Earth Automation API to communicate with ArcGIS Earth from applications that support REST.
Stars: ✭ 15 (-37.5%)
Mutual labels:  sample

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.

SAP Cloud Platform Samples - enterprise granny

Enterprise Granny is a sample application used to demonstrate how-to develop great cloud applications with the SAP Cloud Platform. Step by step we will enhance this simple demo app and make it enterprise-ready by using open source software and by leveraging some of the capabilities of the platform.

Note: The initial source code is a fork of the original Granny's Addressbook application provided by Open Software Integrators.

Quick start

Clone the repo, git clone https://github.com/SAP/cloud-enterprise-granny.git, or download the latest release.

With the introduction of the 2.x branch (which is now the new master branch) the application has been refactored into three modules:

  • a shared enterprise-granny-core module, which contains the domain model and the API,
  • a (micro-) service (provider) called enterprise-granny-service and
  • an exemplary client application called enterprise-granny-client

The later two are both web applications (packaged as WAR files by default) and hence, need to be deployed separately. As the client uses the REST API of the service (provider) one needs to specify the endpoint URL pointing to the API. This is done as described below:

  • SAP HANA Cloud Platform (NEO): Define an HTTP destination with the name Addressbook-Service. The client app comes with an example, which can be found here: destination.properties
  • Cloud Foundry: Define a user-defined environment variable with the name ADDRESSBOOK_SERVICE and the value of the URI, as shown below:
ADDRESSBOOK_SERVICE=https://enterprise-granny-service.cfapps.neo.ondemand.com/api/v1

Please also remember to adjust the declared services within the manifest.yml file as required for your runtime environment!

NOTE: If you intend to deploy this application to a Cloud Foundry landscape provided by SAP or its partners in order to leverage the capabilities of the SAP HANA database platform you need to manually provide the HANA JDBC driver (ngdbc.jar) within the WEB-INF/lib folder.

NOTE: Please note that the application does not run on the Java EE 6 Web profile (2.x) runtime on SAP Cloud Platform due to class loading conflicts with the out-dated javax.validation version used by this runtime!

Table of Content

Versioning

For transparency and insight into our release cycle, and for striving to maintain backward compatibility, the SAP Cloud Platform - Samples project will be maintained under the Semantic Versioning guidelines as much as possible.

Releases will be numbered with the following format:

<major>.<minor>.<patch>

And constructed with the following guidelines:

  • Breaking backward compatibility bumps the major (and resets the minor and patch)
  • New additions without breaking backward compatibility bumps the minor (and resets the patch)
  • Bug fixes and misc changes bumps the patch

For more information on SemVer, please visit http://semver.org/

Authors

Matthias Steiner

Copyright and license

Copyright (c) 2013-2015 SAP SE

Except as provided below, this software is licensed under the Apache License, Version 2.0 (the "License"); you may not use this software except in compliance with the License.You may obtain a copy of the License at:

[http://www.apache.org/licenses/LICENSE-2.0] (http://www.apache.org/licenses/LICENSE-2.0)

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.


This software includes the following component that is subject to the following terms:

JavaSpringGranny - Granny's Addressbook with Java + Spring MVC + PostgreSQL

Avaiable at [https://github.com/osintegrators/JavaSpringGranny] (https://github.com/osintegrators/JavaSpringGranny)

Copyright (c) 2012 Open Software Integrators

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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].