mdoTomofumi Chiba
8/9/2023, 9:58:05 PM

Spring Tips

application.properties の値は 環境変数で上書きする事ができます。

# application.properties
security.user.password=foo

上記の application.properties の設定を環境変数で上書きできます。

export SECURITY_USER_PASSWORD=bar

Dockerfile や kubernetes の deployment.yaml の環境変数設定で上書きです。

TweetLike