Package org.test.spring

Examples of org.test.spring.SimpleBeanClass


@EnableAspectJAutoProxy
public class AdvancedConfigurationClass {
 
  @Bean
  public SimpleBeanClass simpleScannedBean() {
    return new SimpleBeanClass();
  }
View Full Code Here


@Profile("testProfile")
public class ProfileConfigurationClass {
 
  @Bean
  public SimpleBeanClass simpleScannedBean() {
    return new SimpleBeanClass();
  }
View Full Code Here

TOP

Related Classes of org.test.spring.SimpleBeanClass

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.