今天来学习Spring ioc .
一、spring jar 包导入
在 spring 官网下载开发包 spring-framework-4.2.4.RELEASE
,然后导入需要的 jar 包到项目 /lib/
目录下。

二、代码开发
新建一个 'src/cn/sxt/bean/Hello.java'文件
package cn.sxt.bean;
/**
* Created by kaiyiwang on 18/5/22.
*/
public class Hello {
private String name;
private void setName(String name){
this.name = name;
}
public void show(){
System.out.println("hello," + name);
}
}
新建 beans.xml
文件
<?xml version="1.0" encoding="utf-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd"
<!-- bean就是Java对象 由Spring来创建和管理 -->
<bean name="hello" class="cn.sxt.bean.Hello">
<property name="name" value="张三">
</bean>
</beans>
3、新建测试文件 Test.java src/cn/sxt/test/Test.java
package cn.sxt.test;
import cn.sxt.bean.Hello;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* Created by kaiyiwang on 18/5/27.
*/
public class Test {
public static void main(String[] args){
// 解析beans.xml文件,生成管理响应的bean对象
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Hello hello = (Hello)context.getBean("hello");
hello.show();
}
}
右键 'Run Test.main()' 执行编译该文件,会报出如下错误:
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
at org.springframework.context.support.AbstractApplicationContext.<init>(AbstractApplicationContext.java:159)
抛出这样的错误,是因为没有引入commons/logging 包,所以,先到官网 http://struts.apache.org/down... 下载 struts-2.3.34
包, 然后引入 commons-logging-1.1.3.jar'包到项目
src`下
引入该 jar包后,需要添加为项目库路径,否则在写代码引入方法时,不能自动提示相关的方法
点击 OK 即可添加成功。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。