Package test

Source Code of test.DeclarativeProxyLauncher

package test;

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

import test.beans.ITestBean;

public class DeclarativeProxyLauncher
{

  /**
   * @param args
   */
  public static void main(String[] args)
  {
    ApplicationContext context = new ClassPathXmlApplicationContext("ioc-context-declarative.xml");
    ITestBean bean = context.getBean(ITestBean.class);
   
    System.out.println(bean.getTestString());
    System.out.println(bean.getSecondTestString());

  }

}
TOP

Related Classes of test.DeclarativeProxyLauncher

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.