Package com.foreach.across.core.context.configurer

Examples of com.foreach.across.core.context.configurer.ComponentScanConfigurer


            AcrossWebDefaultMvcConfiguration.class,
            MultipartResolverConfiguration.class
        )
    );
    contextConfigurers.add(
        new ComponentScanConfigurer(
            "com.foreach.across.modules.web.menu",
            "com.foreach.across.modules.web.ui"
        )
    );
  }
View Full Code Here


   * Register the default ApplicationContextConfigurers for this module.
   *
   * @param contextConfigurers Set of existing configurers to add to.
   */
  protected void registerDefaultApplicationContextConfigurers( Set<ApplicationContextConfigurer> contextConfigurers ) {
    contextConfigurers.add( new ComponentScanConfigurer( getClass().getPackage().getName() ) );
  }
View Full Code Here

TOP

Related Classes of com.foreach.across.core.context.configurer.ComponentScanConfigurer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.