注释类型 DataJpaTest

    • 可选元素概要

      可选元素 
      修饰符和类型可选元素说明
      Class<?>[]excludeAutoConfiguration
      Auto-configuration exclusions that should be applied for this test.
      org.springframework.context.annotation.ComponentScan.Filter[]excludeFilters
      A set of exclude filters which can be used to filter beans that would otherwise be added to the application context.
      org.springframework.context.annotation.ComponentScan.Filter[]includeFilters
      A set of include filters which can be used to add otherwise filtered beans to the application context.
      booleanshowSql
      If SQL output should be logged.
      booleanuseDefaultFilters
      Determines if default filtering should be used with @SpringBootApplication.
    • 元素详细资料

      • showSql

        @PropertyMapping("spring.jpa.show-sql")
        boolean showSql
        If SQL output should be logged.
        返回:
        if SQL is logged
        默认值:
        true
      • useDefaultFilters

        boolean useDefaultFilters
        Determines if default filtering should be used with @SpringBootApplication. By default no beans are included.
        返回:
        if default filters should be used
        另请参阅:
        includeFilters(), excludeFilters()
        默认值:
        true
      • includeFilters

        org.springframework.context.annotation.ComponentScan.Filter[] includeFilters
        A set of include filters which can be used to add otherwise filtered beans to the application context.
        返回:
        include filters to apply
        默认值:
        {}
      • excludeFilters

        org.springframework.context.annotation.ComponentScan.Filter[] excludeFilters
        A set of exclude filters which can be used to filter beans that would otherwise be added to the application context.
        返回:
        exclude filters to apply
        默认值:
        {}
      • excludeAutoConfiguration

        @AliasFor(annotation=org.springframework.boot.autoconfigure.ImportAutoConfiguration.class,
                  attribute="exclude")
        Class<?>[] excludeAutoConfiguration
        Auto-configuration exclusions that should be applied for this test.
        返回:
        auto-configuration exclusions to apply
        默认值:
        {}