类 AutoConfigurationPackages

java.lang.Object
org.springframework.boot.autoconfigure.AutoConfigurationPackages

public abstract class AutoConfigurationPackages extends Object
Class for storing auto-configuration packages for reference later (e.g. by JPA entity scanner).
从以下版本开始:
1.0.0
作者:
Phillip Webb, Dave Syer, Oliver Gierke
  • 构造器详细资料

    • AutoConfigurationPackages

      public AutoConfigurationPackages()
  • 方法详细资料

    • has

      public static boolean has(BeanFactory beanFactory)
      Determine if the auto-configuration base packages for the given bean factory are available.
      参数:
      beanFactory - the source bean factory
      返回:
      true if there are auto-config packages available
    • get

      public static List<String> get(BeanFactory beanFactory)
      Return the auto-configuration base packages for the given bean factory.
      参数:
      beanFactory - the source bean factory
      返回:
      a list of auto-configuration packages
      抛出:
      IllegalStateException - if auto-configuration is not enabled
    • register

      public static void register(BeanDefinitionRegistry registry, String... packageNames)
      Programmatically registers the auto-configuration package names. Subsequent invocations will add the given package names to those that have already been registered. You can use this method to manually define the base packages that will be used for a given BeanDefinitionRegistry. Generally it's recommended that you don't call this method directly, but instead rely on the default convention where the package name is set from your @EnableAutoConfiguration configuration class or classes.
      参数:
      registry - the bean definition registry
      packageNames - the package names to set