当前位置: 代码迷 >> Java相关 >> 使用Spring框架的方法
  详细解决方案

使用Spring框架的方法

热度:66   发布时间:2016-04-22 19:51:23.0
使用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();    }}

 

  相关解决方案