Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Java spring cinema booking quickstart #1916

Closed
wants to merge 51 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
5ceb5bb
empty kalix project
aklikic Dec 8, 2023
5222eb8
rename to java-spring-cinema-booking-choreography
aklikic Dec 11, 2023
7392044
ci & make update
aklikic Dec 11, 2023
e4b94f8
doc wip 2
aklikic Dec 12, 2023
7f22ede
-code
aklikic Dec 13, 2023
cd37d3e
-missing image
aklikic Dec 13, 2023
25c13d0
-fix for pom.xml kalixOrganization property. org needs to be used ins…
aklikic Dec 14, 2023
7a3683e
Text updates until 'Successful charge route'
ennru Dec 14, 2023
11791eb
-java code formating in README
aklikic Dec 14, 2023
2fb0bc2
More readme review
ennru Dec 15, 2023
c3b0fbc
More readme updates
ennru Dec 15, 2023
7ce3592
Update samples/java-spring-cinema-booking-choreography/README.md
aklikic Dec 19, 2023
b58dd4c
Update samples/java-spring-cinema-booking-choreography/README.md
aklikic Dec 19, 2023
8de37d2
Update samples/java-spring-cinema-booking-choreography/README.md
aklikic Dec 19, 2023
d5e01f1
Update samples/java-spring-cinema-booking-choreography/README.md
aklikic Dec 19, 2023
6472356
Update samples/java-spring-cinema-booking-choreography/README.md
aklikic Dec 19, 2023
0578b19
- few additional formatting fixes
aklikic Dec 19, 2023
4132dbc
Merge branch 'main' into java-spring-cinema-booking
octonato Dec 19, 2023
512d393
update cinema show use cases with images that we do not need copyrigh…
aklikic Jan 12, 2024
f6ad4e7
adopting convention to add commands and events as inner records of th…
aklikic Jan 12, 2024
a171722
moving Response Record to common package
aklikic Jan 12, 2024
f980576
- command and event handler methods renamed from handleReservation an…
aklikic Jan 12, 2024
ef74de3
- removed random uuid abstraction methods
aklikic Jan 12, 2024
7989027
- random Show title name change
aklikic Jan 12, 2024
ff11f8d
docs: choreography saga quickstart (#1884)
octonato Dec 12, 2023
1b80e6a
- WebClient replaced with ComponentClient
aklikic Jan 12, 2024
3646d2e
- code format
aklikic Jan 15, 2024
3cbe872
feat: reading the collector endpoint from the ProxyInfo (#1893)
franciscolopezsancho Dec 11, 2023
7e43b60
chore: bump scala version 2.13.10 -> 2.13.12 (#1902)
aludwiko Dec 11, 2023
7e724b0
docs: choreography saga quickstart (#1884)
octonato Dec 12, 2023
8b0fc19
chore: fix typo (#1906)
octonato Dec 12, 2023
124e256
chore: bump scala tooling version 2.12.15 -> 2.12.18 (#1908)
aludwiko Dec 12, 2023
e8234a9
Use "Runtime" as Docker image and service names; Runtime 1.1.27 (#1895)
ennru Dec 12, 2023
b53fc81
chore: improve error message for JSON deserialization (#1911)
aludwiko Dec 13, 2023
f3da4a9
docs: actions as service life-cycle hooks (#1909)
efgpinto Dec 13, 2023
732292c
chore: bump SDK versions to 1.3.6 (#1915)
kalix-bot Dec 13, 2023
16e01fe
fix: maven archetype kcr vars (#1917)
efgpinto Dec 14, 2023
ba3d16c
fix: Hello world action exposed to the internet in code first archety…
aludwiko Dec 15, 2023
a5e374b
docs: documenting persistent dev mode (#1918)
aludwiko Dec 15, 2023
78e6738
chore: bump SDK versions to 1.3.7 (#1922)
kalix-bot Dec 15, 2023
51857a4
update cinema show use cases with images that we do not need copyrigh…
aklikic Jan 12, 2024
fdbe67e
adopting convention to add commands and events as inner records of th…
aklikic Jan 12, 2024
7c35644
moving Response Record to common package
aklikic Jan 12, 2024
599fd0e
- command and event handler methods renamed from handleReservation an…
aklikic Jan 12, 2024
67a87e3
- removed random uuid abstraction methods
aklikic Jan 12, 2024
58c0bf2
- random Show title name change
aklikic Jan 12, 2024
2c7c250
docs: choreography saga quickstart (#1884)
octonato Dec 12, 2023
707f398
- WebClient replaced with ComponentClient
aklikic Jan 12, 2024
ec519d9
- code format
aklikic Jan 15, 2024
614675b
- removing unused command
aklikic Jan 15, 2024
4753b22
Merge remote-tracking branch 'origin/java-spring-cinema-booking' into…
aklikic Jan 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,8 @@ jobs:
- { sample: java-spring-transfer-workflow, it: true }
- { sample: java-spring-transfer-workflow-compensation, it: true }

- { sample: java-spring-cinema-booking-choreography, it: true }

steps:
- name: Checkout
# v3.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,15 @@
version: "3"
services:
kalix-proxy:
image: gcr.io/kalix-public/kalix-proxy:1.1.27
image: gcr.io/kalix-public/kalix-proxy:1.1.24
container_name: java-spring-choreography-saga-quickstart
ports:
- "9000:9000"
extra_hosts:
- "host.docker.internal:host-gateway"
environment:
JAVA_TOOL_OPTIONS: >
# jvm -D properties can be added under this environment map (note: remove this comment when adding properties)

# jvm -D properties can be under this environment map (note: remove this comment when adding properties)
USER_FUNCTION_HOST: ${USER_FUNCTION_HOST:-host.docker.internal}
USER_FUNCTION_PORT: ${USER_FUNCTION_PORT:-8080}
# Comment to enable ACL check in dev-mode (see https://docs.kalix.io/services/using-acls.html#_local_development_with_acls)
Expand Down
2 changes: 1 addition & 1 deletion samples/java-spring-choreography-saga-quickstart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<jdk.target>17</jdk.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<kalix-sdk.version>1.3.7</kalix-sdk.version>
<kalix-sdk.version>1.3.5</kalix-sdk.version>
</properties>

<build>
Expand Down
3 changes: 3 additions & 0 deletions samples/java-spring-cinema-booking-choreography/.bundleignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
target
.*
dependency-reduced-pom.xml
Loading