• 使用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();
        }
    }
  • 相关阅读:
    用grunt搭建自动化的web前端开发环境-完整教程
    SQL Server:触发器详解
    利用junit对springMVC的Controller进行测试
    jquery-barcode:js实现的条码打印
    16个良好的 Bootstrap Angularjs 管理后台主题
    Spring Security 4 Hello World Annotation+XML
    intellij 13新建javaweb项目并用tomcat 7启动
    JavaScript类和继承:constructor属性
    javascript 的面相对象
    javascript call apply bind caller callee 的用法
  • 原文地址:https://www.cnblogs.com/wlx520/p/4728250.html
Copyright © 2020-2023  润新知