Class LiveReloadConfig

java.lang.Object
io.quarkus.runtime.LiveReloadConfig

@ConfigRoot(phase=BUILD_AND_RUN_TIME_FIXED) public class LiveReloadConfig extends Object
  • Field Details

    • enabled

      @ConfigItem(defaultValue="true") boolean enabled
      Whether the live-reload feature should be enabled.
    • instrumentation

      @ConfigItem(defaultValue="false") boolean instrumentation
      Whether Quarkus should enable its ability to not do a full restart when changes to classes are compatible with JVM instrumentation. If this is set to true, Quarkus will perform class redefinition when possible.
    • watchedResources

      @ConfigItem public Optional<List<String>> watchedResources
      The names of additional resource files to watch for changes, triggering a reload on change. Directories are not supported.
    • password

      @ConfigItem public Optional<String> password
      Password used to use to connect to the remote dev-mode application
    • url

      URL used to use to connect to the remote dev-mode application
    • connectTimeout

      @ConfigItem(defaultValue="30s") public Duration connectTimeout
      The amount of time to wait for a remote dev connect or reconnect
    • retryInterval

      @ConfigItem(defaultValue="2s") public Duration retryInterval
      The amount of time to wait between attempts when connecting to the server side of remote dev
    • retryMaxAttempts

      @ConfigItem(defaultValue="10") public Integer retryMaxAttempts
      The maximum number of attempts when connecting to the server side of remote dev
  • Constructor Details

    • LiveReloadConfig

      public LiveReloadConfig()