- an
application.propertiesfile (mounted with--spring.config.additional-location=), - a command-line flag (
--alginte.ksql-db-host=…), - an environment variable (wins over the others — handy for containers).
Env-var naming (relaxed binding). Uppercase the property, replace
. with _, and
remove dashes — do not turn a dash into an underscore. alginte.kafka-connect-host
→ ALGINTE_KAFKACONNECTHOST. A stray underscore (ALGINTE_KAFKA_CONNECT_HOST) binds a
different property and is silently ignored.Core connectivity
| Property | Env var | Purpose |
|---|---|---|
spring.kafka.bootstrap-servers | SPRING_KAFKA_BOOTSTRAPSERVERS | Broker bootstrap list (required). |
alginte.kafka-schema-registry-host | ALGINTE_KAFKASCHEMAREGISTRYHOST | Schema Registry base URL. |
alginte.kafka-connect-host | ALGINTE_KAFKACONNECTHOST | Kafka Connect base URL. |
alginte.ksql-db-host | ALGINTE_KSQLDBHOST | ksqlDB server host. |
Server & networking
| Property | Env var | Purpose |
|---|---|---|
server.address | SERVER_ADDRESS | Bind address. Defaults to localhost; set 0.0.0.0 to serve a network — see Run with the JAR. |
alginte.startup-connectivity-check.enabled | ALGINTE_STARTUPCONNECTIVITYCHECK_ENABLED | Fail-fast broker check on boot. false to start before the broker is up. |
Profiles
SetSPRING_PROFILES_ACTIVE to activate a profile (for example a local profile that
turns on DEBUG logging and dev defaults). Environment variables still override any value
a profile supplies.
Related
Authentication
Username/password and OIDC login.
Update notifications
Opt into the “new version available” check.