Package demo.xml

Source Code of demo.xml.XmlAopDemo

package demo.xml;

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

import core.Bank;

public class XmlAopDemo {

  public static void main(String[] args) {
    ApplicationContext context = new ClassPathXmlApplicationContext("demo/xml/config.xml");
    Bank bank = context.getBean(Bank.class);
    bank.credit("abc", 100);
  }

}
TOP

Related Classes of demo.xml.XmlAopDemo

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.