使用Spring框架的步骤

“好记性,不如烂笔头”。今天正式接触了Spring框架,第一次接触Spring框架感觉Spring框架简化了好多程序代码,开发效率大大提高。现在介绍使用Spring框架的步骤。(使用spring-framework-2.5.6版本)

1、导入jar包:找到压缩包里边的dist/Spring.jar;然后再找到
lib\jakarta-commons\commons-logging.jar

2、编写spring配置文件....;添加一个bean(将一个类/依赖对象交给spring来维护和创建)

<?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.5.xsd">
    <!-- 
        bean:将一个类交给spring维护和创建就是一个bean
        之前手动new的对象现在交给spring来做
     -->
    <!--<bean id="springioc" class="com.msit.spring.IOC.DI.ObjectRef.SpringIOC"></bean>-->
    <!-- 
        bean:就是一个类(对象)
        property:代表类或者对象中的属性;name跟类中的属性名称一样;value就相当于=
        SpringIOC.msg = "Hello-Spring"
     -->
    <bean id="hellospring" class="com.msit.spring.IOC.DI.propertity.HelloSpring">
        <property name="msg" value="Hello-Spring"></property>
    </bean>
    

</beans>

 

3、通过ApplicationContext context = new ClassPathXMLApplicationContext("applicationContext.xml");
context.getBean("bean名称");来获取创建的bean

package com.msit.spring.IOC.createObject;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;


public class Test {
    public static void main(String[] args) {
        // 加载配置文件
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        
        //得到Bean
        HelloWorld ch = (HelloWorld) context.getBean("hellospring");
        ch.hello();
        
        //ch.createhello().hello();
        
        //CreateHelloWorld.createhello().hello();
    }
}

 

转载于:https://www.cnblogs.com/wlx520/p/4728250.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值