A Java DAPR workshop showcasing how DAPR's component model can accelerate developers ability to develop and ship distributed applications in Azure Kubernetes Service and Azure Container Apps.
Перейти к файлу
Pierre Malarme 3a9d645bcd
Merge pull request #110 from Azure/fix/prerequisites-export-variables-script
Fix typo in prerequisites documentation
2023-08-25 11:14:20 +02:00
.devcontainer Add rest client extension to devcontainer 2023-08-08 17:22:37 +02:00
.mvn/wrapper Add maven wrapper as an option to avoid to install maven on the local machine or to be sure to use the right version 2023-08-08 14:42:49 +02:00
.vscode documentation updates in index markdown 2023-03-22 14:26:22 -04:00
FineCollectionService Add maven wrapper as an option to avoid to install maven on the local machine or to be sure to use the right version 2023-08-08 14:42:49 +02:00
Simulation Add maven wrapper as an option to avoid to install maven on the local machine or to be sure to use the right version 2023-08-08 14:42:49 +02:00
TrafficControlService Add maven wrapper as an option to avoid to install maven on the local machine or to be sure to use the right version 2023-08-08 14:42:49 +02:00
VehicleRegistrationService Add maven wrapper as an option to avoid to install maven on the local machine or to be sure to use the right version 2023-08-08 14:42:49 +02:00
dapr Add the secret store in the transversal challenge for Azure Container Apps 2023-08-07 19:15:57 +02:00
deploy Add more homogeinity in the documentation 2023-03-22 18:06:25 +01:00
docs Fix typo in prerequisites documentation 2023-08-25 11:13:54 +02:00
img added zipkin screenshot 2022-06-13 11:39:52 -06:00
scripts Add cleanup of role assignmenet, AAD application and its SP. 2023-08-17 11:25:52 +02:00
.gitattributes push code and docs to Azure github repo 2022-06-06 19:42:55 -04:00
.gitignore Add first version of managed identities for Azure Container Apps 2023-08-09 20:12:57 +02:00
CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md committed 2022-06-06 16:30:37 -07:00
LICENSE LICENSE updated to template 2022-06-06 16:30:38 -07:00
README.md Fix the name of the github repository in the doc and update the name of the workshop 2023-08-08 21:22:25 +02:00
SECURITY.md SECURITY.md committed 2022-06-06 16:30:39 -07:00
SUPPORT.md SUPPORT.md committed 2022-06-06 16:30:40 -07:00
docker-compose.yml Fix the version of Kafka and Zookeeeper images in docker compose to avoid issue with the latest version. 2023-08-08 17:09:45 +02:00
mvnw Add maven wrapper as an option to avoid to install maven on the local machine or to be sure to use the right version 2023-08-08 14:42:49 +02:00
mvnw.cmd Add maven wrapper as an option to avoid to install maven on the local machine or to be sure to use the right version 2023-08-08 14:42:49 +02:00
pom.xml Update Dapr SDK version, add assignment 7 to invoke a service from a service using Dapr, add assignment 8 to use Redis as a state store, update state store to use the DaprClient instead of the RestTemplate 2022-10-24 18:55:19 +02:00

README.md

Java Dapr-AKS-ACA Workshop

Open in GitHub Codespaces Open in Remote - Dev Containers

Introduction

This workshop teaches you how to apply Dapr to a Java microservices application and enable developers to move between multiple pub-sub, state stores and secret store components seamlessly. It also demonstrates Dapr's builtin support for distributed tracing using any backend monitoring tools. Finally, the workshop provides hands on experience in deploying the microservices in both Azure Kubernetes Service (AKS) and Azure Contaner Apps

The domain

For the assignments you will be working with a speeding-camera setup as can be found on several Dutch highways. This is an overview of the fictitious setup you're simulating:

Speeding cameras

There's 1 entry-camera and 1 exit-camera per lane. When a car passes an entry-camera, the license-number of the car and the timestamp is registered.

When the car passes an exit-camera, this timestamp is also registered by the system. The system then calculates the average speed of the car based on the entry- and exit-timestamp. If a speeding violation is detected, a message is sent to the Central Fine Collection Agency (or CJIB in Dutch). They will retrieve the information of the owner of the vehicle and send him or her a fine.

Workshop

The workshop is available here.