How can I override properties in Quarkus?
问题 I would like to override the properties I have configured in my configuration file in my Quarkus application. How can I accomplish that? 回答1: Properties in Quarkus are generally configured in src/main/resources/application.properties . This is true both for properties that configure the behavior of Quarkus (like the http port it listens to or the database URL to connect to for example) and properties that are specific to your application (for example a greeting.message property). The