Interface FxViewConfig


@ConfigMapping(prefix="quarkus.fx") @ConfigRoot(phase=BUILD_AND_RUN_TIME_FIXED) public interface FxViewConfig
  • Method Summary

    Modifier and Type
    Method
    Description
    Root location for bundle resources (.properties)
    Root location for fx resources (.fxml)
    Location for main resources (allowing stylesheet live reload in dev mode)
    Root location for style resources (.css)
    boolean
    Enable (or disable) stylesheet live reload in dev mode
  • Method Details

    • fxmlRoot

      @WithDefault("/") String fxmlRoot()
      Root location for fx resources (.fxml)
    • styleRoot

      @WithDefault("/") String styleRoot()
      Root location for style resources (.css)
    • bundleRoot

      @WithDefault("/") String bundleRoot()
      Root location for bundle resources (.properties)
    • stylesheetReload

      @WithDefault("true") boolean stylesheetReload()
      Enable (or disable) stylesheet live reload in dev mode
    • mainResources

      @WithDefault("src/main/resources/") String mainResources()
      Location for main resources (allowing stylesheet live reload in dev mode)