11121314151617181920
@Test public void testeSpring() { ApplicationContext ctx = new ClassPathXmlApplicationContext("app-context.xml"); HelloWorld helloWorldBean = ctx.getBean("helloWorldBean", HelloWorld.class); helloWorldBean.saudar(); }