第一步 导入jar包
(1)解压(spring)资料zip文件
jar特点:都有三个jar包
(2)做spring最基本功能的时候,导入四个核心jar包就可以了
(3)导入支持日子输出的jar包
第二步 创建类,在类里面创建方法
package cn.itcast.ioc;
public class User{
public void add(){
System.out.prinln("add..........");
}
public static void main(String[] args){}
//原始做法
User user =new User();
user.add();
}
第三步 创建spring配置文件,配置创建类
(1)spring核心配置文件名称和位置不是固定的
建议放到src下面,官方建议applicationContext.xml
(2)引入schema约束
首先创建一个xml文件,在这里我在src里面创建了bean1.xml文件,并将下列schema约束写入该文件中.
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
</beans>
(3)配置文件的创建
<!--ioc入门-->
<bean id="" class="src/cn.itcast.ioc/User.java"></bean>
最终的bean1.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"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<!--ioc入门-->
<bean id="user" class="cn.itcast.ioc.User"></bean>
</beans>
第四步 写代码测试对象创建
(1)这段代码在测试中使用
public void testUser(){
//1加载spring配置文件,根据创建对象
ApplicationContext context = new ClassPathXmlApplicationContext("bean1.xml");
//2得到配置创建的对象
User user = (User) context.getBean("user");
System.out.println(user);
user.add();
}