Document that one can override runtime properties via config/application.properties
See original GitHub issueYou can override runtime properties in bulk by placing a config/application.properties
int he working directory of the application.
This is useful for users but not documented.
https://github.com/quarkusio/quarkus/issues/1218#issuecomment-491832844 https://github.com/geoand/quarkus/blob/46dc078de494b331d83d39df8dddcc97e516bf85/core/runtime/src/main/java/io/quarkus/runtime/configuration/ApplicationPropertiesConfigSource.java#L70
No reference in https://quarkus.io/guides/application-configuration-guide
Issue Analytics
- State:
- Created 4 years ago
- Comments:11 (7 by maintainers)
Top Results From Across the Web
How to override application.properties during production in ...
I know you asked how to do this, but the answer is you should not do this. Instead, have a application.properties , application-default.properties...
Read more >Override the secure properties - MuleSoft Help Center
How to override secure properties values? ANSWER. To override the properties you will be able to do only using clean text. For example...
Read more >Configuration Reference Guide - Quarkus
For example, a property configured using an environment property overrides the value provided using the application.properties file. config sources. 1.1. System ...
Read more >24. Externalized Configuration - Spring
You can use properties files, YAML files, environment variables and command-line arguments to externalize configuration. Property values can be injected ...
Read more >Configuring your Quarkus applications by using a properties file
You can also configure Quarkus to read properties from a YAML file ... any runtime properties that are defined in that file will...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@flo-ryan it should be describe in each relevant guide. We are also in the process of rolling out a unified rendering of the property list. See Hibernate ORM’s for example, you will see the different icon depending on the lifecycle (build time vs runtime) see https://quarkus.io/guides/hibernate-orm-guide#properties-to-refine-your-hibernate-orm-configuration
PS @gsmet should we rename the
lifecycle
column tobuild/runtime
to be a bit more specific?I just checked and
quarkus:dev
works file with this feature. I will add a note however in #4458 on how to use it.