0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

SpringBoot環境でpropertiesファイルを分ける

Last updated at Posted at 2023-08-06

はじめに

SpringBootは起動時パラメータを定義することで、使用するpropertiesファイルを変えることができるらしい
本番環境とテスト環境で接続DB等の情報を変更したいため分けてみる

propertiesファイル作成

以下のように作成する

デフォルト:application.properties

環境1:application-env1.properties
環境2:application-env2.properties

起動時パラメータ

定義パラメータ

--spring.profiles.active=xxx

環境1だと

--spring.profiles.active=env1

環境2だと

--spring.profiles.active=env2

Eclipseだと以下のような形で定義
image.png

VSCodeだと以下のような形で定義
image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?