Interface DataSourcesJdbcBuildTimeConfig.DevUIBuildTimeConfig

Enclosing interface:
DataSourcesJdbcBuildTimeConfig

public static interface DataSourcesJdbcBuildTimeConfig.DevUIBuildTimeConfig
  • Method Summary

    Modifier and Type
    Method
    Description
    Allowed database host.
    boolean
    Allow sql queries in the Dev UI page
    Append this to the select done to fetch the table values. eg: LIMIT 100 or TOP 100
    boolean
    Activate or disable the dev ui page.
  • Method Details

    • enabled

      @WithDefault("true") boolean enabled()
      Activate or disable the dev ui page.
    • allowSql

      @WithDefault("false") boolean allowSql()
      Allow sql queries in the Dev UI page
    • appendToDefaultSelect

      Optional<String> appendToDefaultSelect()
      Append this to the select done to fetch the table values. eg: LIMIT 100 or TOP 100
    • allowedDBHost

      Optional<String> allowedDBHost()
      Allowed database host. By default, only localhost is allowed. Any provided host here will also be allowed. You can use the special value * to allow any DB host.