Package demo.annotation

Source Code of demo.annotation.SpringAnnotationDemo

package demo.annotation;


import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

import core.GreetingService;

public class SpringAnnotationDemo {

  public static void main(String[] args) {
    ApplicationContext context = new AnnotationConfigApplicationContext(Beans.class);
    GreetingService service = context.getBean(GreetingService.class);
    service.greet("World");
  }

}
TOP

Related Classes of demo.annotation.SpringAnnotationDemo

TOP
Copyright © 2018 www.massapi.com. 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.