Package org.springframework.beans.factory.aspectj

Examples of org.springframework.beans.factory.aspectj.ShouldBeConfiguredBySpring


public class AnnotationBeanConfigurerTests {

  @Test
  public void testInjection() {
    AnnotationConfigApplicationContext context = new  AnnotationConfigApplicationContext(Config.class);
    ShouldBeConfiguredBySpring myObject = new ShouldBeConfiguredBySpring();
    Assert.assertEquals("Rod", myObject.getName());
  }
View Full Code Here

TOP

Related Classes of org.springframework.beans.factory.aspectj.ShouldBeConfiguredBySpring

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.