zoukankan      html  css  js  c++  java
  • 使用Spring框架的步骤

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

    1、导入jar包:找到压缩包里边的dist/Spring.jar;然后再找到
    libjakarta-commonscommons-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();
        }
    }
  • 相关阅读:
    jsp和servlet的联系与区别
    tomcat会如何处理请求
    java中synchronized的关键字
    mybatis的动态sql
    spring自带的json转换工具,支持@ResponseBody注解
    layer一个web弹窗/层解决方案
    spring mvc出现乱码的问题
    hdu1010 Tempter of the Bone
    hdu 3342 Legal or Not
    ThreadPoolExecutor线程池执行器源码解析
  • 原文地址:https://www.cnblogs.com/wlx520/p/4728250.html
Copyright © 2011-2022 走看看