Package test

Source Code of test.AnnotatedProxyLauncher

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

import test.beans.ITestBean;


public class AnnotatedProxyLauncher
{
 
 
  public static void main(String[] args)
  {
    ApplicationContext context = new ClassPathXmlApplicationContext("ioc-context-annotated.xml");
    ITestBean bean = context.getBean(ITestBean.class);
   
    System.out.println(bean.getTestString());
    System.out.println(bean.getSecondTestString());
  }
 
 
}
TOP

Related Classes of test.AnnotatedProxyLauncher

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.