spring技术入门相关源码

时间:2018-02-11 04:29:26
【文件属性】:

文件名称:spring技术入门相关源码

文件大小:4.96MB

文件格式:RAR

更新时间:2018-02-11 04:29:26

spring

spring技术入门系列源码 public class SpringTest { public static void main(String[] args) { //创建spring的ApplicationContext ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml"); //输出spring容器 System.out.println(ctx); //打印加载的bean名称 System.out.println(java.util.Arrays.toString(ctx.getBeanDefinitionNames())); /*MyBean bean = (MyBean)ctx.getBean("myBean"); //获取实例化的bean bean.sayHello();*/ //执行bean的方法 UseBean bean = (UseBean)ctx.getBean("useBean"); //获取实例化的bean bean.show(); //执行bean的方法 } }


【文件预览】:
spring
----.project(1KB)
----.settings()
--------.jsdtscope(503B)
--------org.eclipse.wst.common.component(470B)
--------org.eclipse.jdt.core.prefs(364B)
--------org.eclipse.wst.common.project.facet.core.xml(305B)
--------org.eclipse.wst.jsdt.ui.superType.container(49B)
--------org.eclipse.wst.jsdt.ui.superType.name(6B)
----src()
--------cn()
--------schema.xml(793B)
--------applicationContext.xml(1KB)
--------aop.xml(2KB)
----build()
--------classes()
----WebContent()
--------WEB-INF()
--------index.jsp(2KB)
--------META-INF()
----.classpath(324B)

网友评论