编辑: huangshuowei01 | 2019-07-18 |
Action action = (Action) ctx.getBean( TheAction );
System.out.println(action.execute( Rod Johnson ));
} 可以看到,上面的测试代码中,我们根据 bean.xml 创建了一个ApplicationContext实例,并从此实例中获取我们所需的Action实现. SpringFrameWork Developer'
s Guide Version 0.6 October 8,
2004 So many open source projects. Why not Open your Documents? 运行测试代码,我们看到控制台输出: …… HELLO ROD JOHNSON 我们将bean.xml中的配置稍加修改: 再次运行测试代码,看到: …… hello rod johnson 示例完成! 很简单的示例,的确很简单,甚至简单到了不够真实.........