SlideShare a Scribd company logo
How to develop your first
cloud-native Applications
with Java—
Niklas Heidloff
Developer Advocate, IBM
@nheidloff
How to use all Pieces together?
Kubernetes
Java Enterprise Edition
Istio
Eclipse MicroProfile
#IBMDeveloper github.com/ibm/cloud-native-starter@nheidloff
“Microservices are a software
development technique [...]
that structures an application
as a collection of loosely
coupled services.”
Wikipedia
#IBMDeveloper github.com/ibm/cloud-native-starter@nheidloff
Continuous delivery
→ DevOps
Elasticity
→ App stays responsive
What are cloud-native Applications?
#IBMDeveloper github.com/ibm/cloud-native-starter@nheidloff
New Options → New Challenges
“Kubernetes (K8s) is an open-
source system for automating
deployment, scaling, and
management of containerized
applications.”
kubernetes.io
#IBMDeveloper github.com/ibm/cloud-native-starter@nheidloff
“Istio is an open platform for
providing a uniform way to
integrate microservices,
manage traffic flow across
microservices, enforce
policies and aggregate
telemetry data.”
github.com/istio/istio
@nheidloff
“Optimizing Enterprise Java
for a Microservices
Architecture.
[...] by innovating [...] with a
goal of standardization.”
microprofile.io
@nheidloff @Harald_U #IBMDeveloper github.com/ibm/cloud-native-starter
How to use all Pieces together?
Kubernetes
Java Enterprise Edition
Istio
Eclipse MicroProfile
#IBMDeveloper github.com/ibm/cloud-native-starter@nheidloff
Leverage platforms as
much as possible.
Use frameworks for app
specific logic.
#IBMDeveloper github.com/ibm/cloud-native-starter@nheidloff
Design principles
for the end-to-
end example
‘cloud-native-
starter’
Use only open-
source
components for
the core services
of the application
Make the first
time experience
as simple as
possible
Be able to run the
application in
different
environments
#IBMDeveloper github.com/ibm/cloud-native-starter@nheidloff
Architecture: End-to-End Example ‘cloud-native-starter’
Web-App
NoSQL / Cloudant
Web-API v1 Articles
Web-API v2 Authors
Web-App
SQL / Db2
OpenID / App ID
LogDNASysdig
Authentication
Browser Kubernetes with Istio Optional Cloud Services
Ingress
@nheidloff
“A container image is a
lightweight, standalone,
executable package of
software that includes
everything needed to run an
application.”
docker.com
#IBMDeveloper github.com/ibm/cloud-native-starter
Infrastructure
Host Operating System
Container Runtime
AppA
AppB
AppC
AppD
AppE
@nheidloff
Portable Containers
Java Image
Open source stack
OpenJ9 0.14.0
OpenJDK 11.0.3+7 from AdoptOpenJDK
Open Liberty 19.0.0.5
MicroProfile 2.2
Dockerfile
#IBMDeveloper github.com/ibm/cloud-native-starter@nheidloff
Example Application
Example Application – REST APIs
Web-App Web-API
Articles
Authors
Browser Kubernetes with Istio
@nheidloff #IBMDeveloper github.com/ibm/cloud-native-starter
Exposing REST APIs
JAX-RS
Java API for RESTful Web Services
GetArticles.java
@nheidloff
Exposing REST APIs
Open API (formerly Swagger)
API description format for REST APIs
GetArticles.java
@nheidloff
Exposing REST APIs
Open API (formerly Swagger)
API description format for REST APIs
@nheidloff
Consuming REST APIs
MicroProfile Rest Client
Type-safe approach to invoke RESTful services
AuthorsService.java
AuthorsServiceDataAccess.java
@nheidloff
Consuming REST APIs
MicroProfile Rest Client
Type-safe approach to invoke RESTful services
AuthorsService.java
AuthorsServiceDataAccess.java
@nheidloff
Example Application – Traffic Management
Web-App
Web-API v1 Articles
Web-API v2 Authors
Browser Kubernetes with Istio
@nheidloff #IBMDeveloper github.com/ibm/cloud-native-starter
Traffic Management – Web API Version 1
Traffic Management – Web API Version 2
Traffic Management
Example: 80% / 20% splitting
ingress.yaml
@nheidloff
Traffic Management Demo
Example Application – Resiliency
Web-App Web-API
Articles
Authors
Browser Kubernetes with Istio
@nheidloff #IBMDeveloper github.com/ibm/cloud-native-starter
Resiliency
Authors service not available
Usage of default values
Service.java
@nheidloff
Resiliency
Articles service not available
MicroProfile fallback annotation
Service.java
@nheidloff
Resiliency Demo
Resiliency Demo
Authentication and
Authorization
OpenID Connect
Identity layer on top of the OAuth 2.0 protocol
IBM App ID
IBM service to authenticate users and protect APIs
policy.yaml
@nheidloff #IBMDeveloper github.com/ibm/cloud-native-starter
Example Application – Authentication and Authorization
Web-App
Web-API
Articles
Authors
OpenID Connect /
IBM App ID
Authentication
Browser Kubernetes with Istio Optional Cloud Services
Ingress
@nheidloff
Authentication
Authorization
Authorization
Authorization
Via MicroProfile
server.xml
@nheidloff
Authorization
Via MicroProfile
Manage.java
@nheidloff #IBMDeveloper github.com/ibm/cloud-native-starter
Chained invocations Kubernetes
→ 1 service = N pods
Microservices vs monolith
→ Higher complexity
→ Ephemeral
Tracing
Logging
Monitoring
Metrics
Healthchecks
Observability
@nheidloff #IBMDeveloper github.com/ibm/cloud-native-starter
Example Application – Distributed Logging
Web-App Web-API
Articles
Authors
Browser Kubernetes with Istio
@nheidloff #IBMDeveloper github.com/ibm/cloud-native-starter
Distributed Logging
Example Application – Distributed Logging
Web-App Web-API
Articles
Authors
Browser Kubernetes with Istio
@nheidloff #IBMDeveloper github.com/ibm/cloud-native-starter
Distributed Logging
Tracing
OpenTracing
Vendor-neutral APIs and instrumentation for
distributed tracing
Jaeger and Zipkin
Open source distributed tracing systems
server.xml
#IBMDeveloper github.com/ibm/cloud-native-starter@nheidloff
Distributed Tracing
Metrics
Prometheus
Monitoring system and time series database
GetArticles.java
#IBMDeveloper github.com/ibm/cloud-native-starter@nheidloff
Metrics
Healthchecks
MicroProfile Health
Liveness probes and readiness probes
HealthEndpoint.java
Service.yaml
@nheidloff
Persistence via JPA
Web-App
Web-API Articles
Web-App
SQL / Db2
Browser Kubernetes with Istio Optional Cloud Services
Ingress
@nheidloff
Persistence
Via JPA
server.xml
@nheidloff
Persistence
Via JPA
ArticleEntity.java
#IBMDeveloper github.com/ibm/cloud-native-starter@nheidloff
Configuration
Via MicroProfile
kubernetes.yaml
@nheidloff
Configuration
Via MicroProfile
CoreService.java
#IBMDeveloper github.com/ibm/cloud-native-starter@nheidloff
Try out the end-to-end
microservices example
cloud-native-starter!
#IBMDeveloper github.com/ibm/cloud-native-starter@nheidloff
Documentation
IBM Cloud Kubernetes Service including Istio and Knative
IBM Developer
developer.ibm.com
IBM Cloud Lite account
ibm.biz/nheidloff
IBM loves open source
Kubernetes and Istio
OpenJ9 & AdoptOpenJDK
MicroProfile
Open Liberty
Leverage platforms as
much as possible
Use frameworks for app
specific logic
Summary
Get the code à
@nheidloff #IBMDeveloper github.com/ibm/cloud-native-starter
Jakarta Tech Talk: How to develop your first cloud-native Application with Java

More Related Content

PDF
How to develop your first cloud-native Applications with Java - 30 Minutes
PDF
Reactive Microservices with Quarkus
PDF
When to use Serverless? When to use Kubernetes?
PDF
Visual Recognition with Anki Cozmo and TensorFlow
PDF
How to develop your first cloud-native Applications with Java
PPTX
Writing Slack Bots in JavaScript
PDF
Serverless APIs with Apache OpenWhisk
PDF
Developing Serverless Applications with Apache OpenWhisk
How to develop your first cloud-native Applications with Java - 30 Minutes
Reactive Microservices with Quarkus
When to use Serverless? When to use Kubernetes?
Visual Recognition with Anki Cozmo and TensorFlow
How to develop your first cloud-native Applications with Java
Writing Slack Bots in JavaScript
Serverless APIs with Apache OpenWhisk
Developing Serverless Applications with Apache OpenWhisk

What's hot (20)

PDF
Argo Workflows 3.0, a detailed look at what’s new from the Argo Team
PDF
Building serverless applications with Apache OpenWhisk and IBM Cloud Functions
PDF
Building Serverless Applications on the Apache OpenWhisk Platform
PDF
Create Alexa Skills using IBM Watson Conversation and Apache OpenWhisk
PDF
Workshop: Develop Serverless Applications with IBM Cloud Functions
PDF
Building serverless applications with Apache OpenWhisk
PDF
Containers vs serverless - Navigating application deployment options
PPTX
Running Spring Boot in Kubernetes and Intro to Helm
PDF
Serverless Architectures in Banking: OpenWhisk on IBM Bluemix at Santander
PDF
Apache OpenWhisk - KRnet 2017
PDF
Combining OpenWhisk (serverless), Open API (swagger) and API Connect to build...
PDF
The CNCF on Serverless
PDF
Cloud Foundry Summit 2014 - IBM Bluemix DevOps Services lightning talk
PDF
OpenWhisk Meetup - Austin, TX 07/2017
PPTX
Pat Gelsinger, James Watters, Cornelia Davis at SpringOne Platform 2019
PPTX
Pat Gelsinger, James Watters, Cornelia Davis at SpringOne Platform 2019
PPTX
IglooConf 2020 - API management for microservices in a hybrid and multi-cloud...
PDF
IBM Bluemix OpenWhisk: Serverless Conference 2017, Austin, USA: Keynote
PPTX
Microsoft Ignite 2019 - API management for microservices in a hybrid and mult...
PDF
Getting MongoDB to a Developer Fast - Kubernetes for the Enterprise - London
Argo Workflows 3.0, a detailed look at what’s new from the Argo Team
Building serverless applications with Apache OpenWhisk and IBM Cloud Functions
Building Serverless Applications on the Apache OpenWhisk Platform
Create Alexa Skills using IBM Watson Conversation and Apache OpenWhisk
Workshop: Develop Serverless Applications with IBM Cloud Functions
Building serverless applications with Apache OpenWhisk
Containers vs serverless - Navigating application deployment options
Running Spring Boot in Kubernetes and Intro to Helm
Serverless Architectures in Banking: OpenWhisk on IBM Bluemix at Santander
Apache OpenWhisk - KRnet 2017
Combining OpenWhisk (serverless), Open API (swagger) and API Connect to build...
The CNCF on Serverless
Cloud Foundry Summit 2014 - IBM Bluemix DevOps Services lightning talk
OpenWhisk Meetup - Austin, TX 07/2017
Pat Gelsinger, James Watters, Cornelia Davis at SpringOne Platform 2019
Pat Gelsinger, James Watters, Cornelia Davis at SpringOne Platform 2019
IglooConf 2020 - API management for microservices in a hybrid and multi-cloud...
IBM Bluemix OpenWhisk: Serverless Conference 2017, Austin, USA: Keynote
Microsoft Ignite 2019 - API management for microservices in a hybrid and mult...
Getting MongoDB to a Developer Fast - Kubernetes for the Enterprise - London
Ad

Similar to Jakarta Tech Talk: How to develop your first cloud-native Application with Java (20)

PDF
When Cloud-Native Java meets Containers, Kubernetes and Istio
PPTX
Are you ready for cloud-native Java?
PPTX
JCON_15FactorWorkshop.pptx
PDF
Cloud Native Java Designing Resilient Systems With Spring Boot Spring Cloud A...
PPT
Developing and Deploying Microservices to IBM Cloud Private
PDF
A Hitchhiker's Guide to Cloud Native Java EE
PDF
A Hitchhiker's Guide to Cloud Native Java EE
PPTX
Hands-on cloud-native Java with MicroProfile, Kubernetes and Istio at Javantura
PDF
Developing Open Cloud Native Microservices Your Java Code In Actioncompliment...
PDF
Cloud Native Java Designing Resilient Systems with Spring Boot Spring Cloud a...
PDF
Cloud Native Java Designing Resilient Systems with Spring Boot Spring Cloud a...
PPTX
Microservices with kubernetes @190316
PDF
Java Cloud Native Hack Nights GDL
PPTX
Seriously Open Cloud Native Java Microservices
PPTX
"The Cloud Native Enterprise is Coming"
PPT
IBM Cloud UCC Talk, 8th December 2020 - Cloud Native, Microservices, and Serv...
PDF
SpringBoot and Spring Cloud Service for MSA
PDF
[WSO2 Integration Summit New York 2019] Cloud Native Integrations for the Ent...
PDF
The Beginner’s Guide To Spring Cloud
PPTX
MicroProfile, Docker, Kubernetes, Istio and Open Shift lab @dev nexus
When Cloud-Native Java meets Containers, Kubernetes and Istio
Are you ready for cloud-native Java?
JCON_15FactorWorkshop.pptx
Cloud Native Java Designing Resilient Systems With Spring Boot Spring Cloud A...
Developing and Deploying Microservices to IBM Cloud Private
A Hitchhiker's Guide to Cloud Native Java EE
A Hitchhiker's Guide to Cloud Native Java EE
Hands-on cloud-native Java with MicroProfile, Kubernetes and Istio at Javantura
Developing Open Cloud Native Microservices Your Java Code In Actioncompliment...
Cloud Native Java Designing Resilient Systems with Spring Boot Spring Cloud a...
Cloud Native Java Designing Resilient Systems with Spring Boot Spring Cloud a...
Microservices with kubernetes @190316
Java Cloud Native Hack Nights GDL
Seriously Open Cloud Native Java Microservices
"The Cloud Native Enterprise is Coming"
IBM Cloud UCC Talk, 8th December 2020 - Cloud Native, Microservices, and Serv...
SpringBoot and Spring Cloud Service for MSA
[WSO2 Integration Summit New York 2019] Cloud Native Integrations for the Ent...
The Beginner’s Guide To Spring Cloud
MicroProfile, Docker, Kubernetes, Istio and Open Shift lab @dev nexus
Ad

More from Niklas Heidloff (20)

PDF
Blue Cloud Mirror
PDF
IBM at JavaLand
PDF
Serverless Web Applications on the IBM Cloud
PDF
Development of AI Applications without Machine Learning Skills
PDF
Building Serverless Web Applications with OpenWhisk
PDF
IBM Bluemix Continuous Delivery
PPTX
Cognitive IBM Watson Services for Bluemix Developers
PPTX
IBM Bluemix Demo with Anki Overdrive Cars
PDF
Rapid Application Development with Docker
PDF
Collaborative Line of Business Applications on IBM Bluemix
PDF
Rapid Application Development in the Cloud and On-Premises with Docker
PDF
IBM Bluemix for Administrators with Focus on XPages
PDF
Ten Minutes Bluemix Pitch from Dev to Dev
PDF
IBM Bluemix Demos: Driving Smartphone and Personality Ball
PDF
IBM Bluemix - The Cloud Platform Java Developers have been looking for
PDF
Build cognitive Apps that help enhance, scale and accelerate Human Expertise
PDF
IBM Enterprise Social Solutions on Bluemix (XPages and Connections)
PDF
Introduction to IBM Bluemix for Java Developers
PDF
Application Development for IBM Connections with IBM Bluemix
PDF
IBM Collaboration Solutions Application Development - Frequently Asked Questions
Blue Cloud Mirror
IBM at JavaLand
Serverless Web Applications on the IBM Cloud
Development of AI Applications without Machine Learning Skills
Building Serverless Web Applications with OpenWhisk
IBM Bluemix Continuous Delivery
Cognitive IBM Watson Services for Bluemix Developers
IBM Bluemix Demo with Anki Overdrive Cars
Rapid Application Development with Docker
Collaborative Line of Business Applications on IBM Bluemix
Rapid Application Development in the Cloud and On-Premises with Docker
IBM Bluemix for Administrators with Focus on XPages
Ten Minutes Bluemix Pitch from Dev to Dev
IBM Bluemix Demos: Driving Smartphone and Personality Ball
IBM Bluemix - The Cloud Platform Java Developers have been looking for
Build cognitive Apps that help enhance, scale and accelerate Human Expertise
IBM Enterprise Social Solutions on Bluemix (XPages and Connections)
Introduction to IBM Bluemix for Java Developers
Application Development for IBM Connections with IBM Bluemix
IBM Collaboration Solutions Application Development - Frequently Asked Questions

Recently uploaded (20)

PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
medical staffing services at VALiNTRY
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
Nekopoi APK 2025 free lastest update
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PPTX
Introduction to Artificial Intelligence
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PDF
Digital Strategies for Manufacturing Companies
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PPTX
Odoo POS Development Services by CandidRoot Solutions
PDF
How Creative Agencies Leverage Project Management Software.pdf
2025 Textile ERP Trends: SAP, Odoo & Oracle
Reimagine Home Health with the Power of Agentic AI​
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Navsoft: AI-Powered Business Solutions & Custom Software Development
medical staffing services at VALiNTRY
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Nekopoi APK 2025 free lastest update
VVF-Customer-Presentation2025-Ver1.9.pptx
Design an Analysis of Algorithms II-SECS-1021-03
Odoo Companies in India – Driving Business Transformation.pdf
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Introduction to Artificial Intelligence
Design an Analysis of Algorithms I-SECS-1021-03
How to Migrate SBCGlobal Email to Yahoo Easily
Digital Strategies for Manufacturing Companies
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Odoo POS Development Services by CandidRoot Solutions
How Creative Agencies Leverage Project Management Software.pdf

Jakarta Tech Talk: How to develop your first cloud-native Application with Java