Interface AnnotationConfigRegistry

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethodDescription
      voidregister​(Class<?>... annotatedClasses)
      Register one or more annotated classes to be processed.
      voidscan​(String... basePackages)
      Perform a scan within the specified base packages.
    • Method Detail

      • register

        void register​(Class<?>... annotatedClasses)
        Register one or more annotated classes to be processed.

        Calls to register are idempotent; adding the same annotated class more than once has no additional effect.

        Parameters:
        annotatedClasses - one or more annotated classes, e.g. @Configuration classes
      • scan

        void scan​(String... basePackages)
        Perform a scan within the specified base packages.
        Parameters:
        basePackages - the packages to check for annotated classes