Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
3dd7005
feat: initial working hazelcast integration. localgateway working, ou…
stijnpotters1 Mar 19, 2026
25a68a7
fix: improved code to prefinal version
stijnpotters1 Mar 19, 2026
5dffdfe
fix: improved hazelcast connection logic
stijnpotters1 Mar 24, 2026
56d07dc
fix: improved LocalGateway logic, added tests and improved code more
stijnpotters1 Mar 24, 2026
e2b4642
Replace hazelcast implementation with Console-like one
Matthbo Apr 10, 2026
ac43c07
Update security
Matthbo Apr 13, 2026
56c0bb0
Make flow and framework detect each other
Matthbo Apr 14, 2026
3cdcd13
Attempt to send message to framework
Matthbo Apr 15, 2026
f905469
Move UserContext logic to ClientSession
Matthbo Apr 16, 2026
b9e5583
Tests and losing my mind
Matthbo Apr 16, 2026
d53d27a
Fix gateway communication and show in frontend
Matthbo Apr 17, 2026
4760c56
Fix issues
Matthbo Apr 22, 2026
d3e5fed
copilot feedback & test fixes
Matthbo Apr 22, 2026
9150f6f
Spotless
Matthbo Apr 22, 2026
dbb6b20
More test fixes
Matthbo Apr 22, 2026
389934e
Use both central & ff nexus repositories
Matthbo Apr 22, 2026
834709b
chore: update Java version to 25 in CI configurations
philipsens Apr 22, 2026
9dd5e9f
Update dependencies
Matthbo Apr 24, 2026
de088bb
Merge branch 'master' into feat/hazelcast-integration
Matthbo Apr 24, 2026
5e81b38
Also update frontend packages
Matthbo Apr 24, 2026
70f1454
Fix linting dependency
Matthbo Apr 24, 2026
c0d5f6a
Move requestmapping value to class for ClusterMembers
Matthbo May 1, 2026
c61bb65
Oops
Matthbo May 1, 2026
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: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}
JAVA_VERSION: 21
JAVA_VERSION: 25
NODE_VERSION: 23
PNPM_VERSION: 10.4.0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches: [ master ]

env:
JAVA_VERSION: 21
JAVA_VERSION: 25
NODE_VERSION: 23
PNPM_VERSION: 10.4.0

Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/sonarqube.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
pull_request:
types: [opened, synchronize, reopened]

env:
JAVA_VERSION: 25
NODE_VERSION: 23
PNPM_VERSION: 10.4.0

jobs:
build:
if: github.actor != 'renovate[bot]' && github.actor != 'dependabot[bot]'
Expand All @@ -18,22 +23,22 @@ jobs:
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

- name: Set up JDK 21
- name: Set up JDK ${{ env.JAVA_VERSION }}
uses: actions/setup-java@v5
with:
java-version: 21
java-version: ${{ env.JAVA_VERSION }}
distribution: 'temurin'
cache: 'maven'

- name: Install pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061
with:
version: 10.22.0
version: ${{ env.PNPM_VERSION }}

- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 23
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'

- name: Cache SonarQube packages
Expand Down
13 changes: 13 additions & 0 deletions .run/Flow Hazelcast Cluster.run.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Flow Hazelcast Cluster" type="docker-deploy" factoryName="docker-compose.yml" server-name="Docker">
<deployment type="docker-compose.yml">
<settings>
<option name="removeImagesOnComposeDown" value="LOCAL" />
<option name="sourceFilePath" value="flow-framework-compose.yml" />
</settings>
</deployment>
<method v="2">
<option name="Maven.BeforeRunTask" enabled="true" file="$PROJECT_DIR$/pom.xml" goal="package" />
</method>
</configuration>
</component>
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:21-jre-jammy AS runner
FROM eclipse-temurin:25-jre-jammy AS runner
ARG GID=2000
ARG UID=2000
WORKDIR /app
Expand Down
32 changes: 32 additions & 0 deletions docker/resources/Configuration.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<Configuration>
<adapter name="HelloWorld">
<receiver name="HelloWorld">
<!-- This listener is used when the API is called as specified in OpenAPI 3.0 at the Webservices page -->
<listener
name="HelloWorld"
className="org.frankframework.http.rest.ApiListener"
uriPattern="hello-world"
allowAllParams="false"
/>
</receiver>
<receiver name="HelloWorld">
<!-- This listener is used by the scheduler and IbisLocalSender in adapter HelloWorlds -->
<listener
name="HelloWorld"
className="org.frankframework.receivers.JavaListener"
/>
</receiver>
<pipeline firstPipe="HelloWorld">
<exits>
<exit name="EXIT" state="success"/>
</exits>
<pipe
name="HelloWorld"
className="org.frankframework.pipes.EchoPipe"
getInputFromFixedValue="Hello World"
>
<forward name="success" path="EXIT"/>
</pipe>
</pipeline>
</adapter>
</Configuration>
4 changes: 4 additions & 0 deletions docker/resources/resources.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
jdbc:
- name: "frank2flowinstance"
type: "org.h2.jdbcx.JdbcDataSource"
url: "jdbc:h2:mem:test;NON_KEYWORDS=VALUE;DB_CLOSE_ON_EXIT=FALSE;DB_CLOSE_DELAY=-1;TRACE_LEVEL_FILE=0;"
24 changes: 24 additions & 0 deletions flow-framework-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
services:
flow:
image: ghcr.io/frankframework/flow:latest
build:
dockerfile: ./docker/Dockerfile
context: .
environment:
SPRING_PROFILES_ACTIVE: cloud
management.gateway.outbound.class: org.frankframework.management.gateway.HazelcastOutboundGateway
ports:
Comment thread
Matthbo marked this conversation as resolved.
- "8080:8080"
- "5700-5709:5700-5709"

ff-test:
image: frankframework/frankframework:latest
ports:
- "8081:8080"
- "5710-5720:5700-5710"
volumes:
- ./docker/resources:/opt/frank/resources
environment:
- instance.name=Frank2FlowInstance
- dtap.stage=LOC
- management.gateway.inbound.class=org.frankframework.management.gateway.HazelcastInboundGateway,org.frankframework.management.bus.LocalGateway
Loading
Loading