ioc入门案例

第一步 导入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();
    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值