이 콘텐츠는 선택한 언어로 제공되지 않습니다.

Chapter 6. Setting configuration properties


By default, Quarkus reads properties from the application.properties file located in the src/main/resources directory. If you change build properties, make sure to repackage your application.

Quarkus configures most properties during build time. Extensions can define properties as overridable at run time, for example the database URL, a user name, and a password which can be specific to your target environment.

Prerequisites

  • You have a Quarkus Maven project.

Procedure

  1. To package your Quarkus project, enter the following command:

    ./mvnw clean package
    Copy to Clipboard Toggle word wrap
  2. Use one of the following methods to set the configuration properties:

    • Setting system properties:

      Enter the following command where <key> is the name of the configuration property you want to add and <value> is the value of the property:

      java -D<key>=<value> -jar target/myapp-runner.jar
      Copy to Clipboard Toggle word wrap

      For example, to set the value of the quarkus.datasource.password property, enter the following command:

      java -Dquarkus.datasource.password=youshallnotpass -jar target/myapp-runner.jar
      Copy to Clipboard Toggle word wrap
    • Setting environment variables:

      Enter the following command where <key> is the name of the configuration property you want to set and <value> is the value of the property:

      export <key>=<value> ; java -jar target/myapp-runner.jar
      Copy to Clipboard Toggle word wrap
      Note

      Environment variable names follow the conversion rules of Eclipse MicroProfile. Convert the name to upper case and replace any character that is not alphanumeric with an underscore (_).

    • Using an environment file:

      Create an .env file in your current working directory and add configuration properties where <PROPERTY_KEY> is the property name and <value> is the value of the property:

      <PROPERTY_KEY>=<value>
      Copy to Clipboard Toggle word wrap
      Note

      For development mode, this file can be located in the root directory of your project, but it is advised to not track the file in version control. If you create an .env file in the root directory of your project, you can define keys and values that the program reads as properties.

    • Using the application.properties file.

      Place the configuration file in $PWD/config/application.properties directory where the application runs so any runtime properties defined in that file will override the default configuration.

      Note

      You can also use the config/application.properties features in development mode. Place the config/application.properties inside the target directory. Any cleaning operation from the build tool, for example mvn clean, will remove the config directory as well.

Red Hat logoGithubredditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다. 최신 업데이트를 확인하세요.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

Theme

© 2026 Red Hat
맨 위로 이동