Package demo.xml

Source Code of demo.xml.SpringXmlDemo

package demo.xml;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import core.GreetingService;

public class SpringXmlDemo {

  public static void main(String[] args) {
    ApplicationContext context = new ClassPathXmlApplicationContext("demo/xml/beans.xml");
    GreetingService service = context.getBean(GreetingService.class);
    service.greet("World");
  }

}
TOP

Related Classes of demo.xml.SpringXmlDemo

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.