博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring框架的理解
阅读量:4963 次
发布时间:2019-06-12

本文共 2230 字,大约阅读时间需要 7 分钟。

Spring 是一個开源的IOC和AOP容器框架!

具体描述为:

1.轻量级:Spring是非侵入性-基于Spring开发的应用中的对象可以不依赖API开发

2.依赖注入(DI---------dependency injection,ioc)

3.面向切面编程(AOP-----aspect oriented programming)

4.容器:Spring是一个容器,因为它包含了并且管理了应用对象的生命周期

5.Spring 实现了使用简单的主键配置组合成一个复杂的应用,Spring中可以使用XML和JAVA注解组合这些对

6.站式:在IOC和AOP的基础上,可以整合各种第三方框架!

                                     Spring 模块图接

 

 

 

 

                            Spring开发需要的JAR包

1.把Jar包加入到工程Classpath

commons-logging-1.1.3.jar

spring-beans-4.0.0.RELEASE.jar

spring-context-4.0.0.RELEASE.jar

spring-core-4.0.0.RELEASE.jar

spring-expression-4.0.0.RELEASE.jar

 Spring的配置文件:一个典型的Spring项目需要创建一个或多个BEAN配置文件,这些配置文件用于Spring IOC容器里

配置BEAN。BEAN的配置文件可以放在classpath下,也可以放在其他目录下。

 

案例: 

创建一个测试类

创建一个测试方法

导入对应的架包

在SRC下面创建:applicationContext-Spring.xml 

代码示例:  SRC下面创建:applicationContext-Spring.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"
   xsi:schemaLocation="http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
   http://www.springframework.org/schema/context
   http://www.springframework.org/schema/context/spring-context-3.0.xsd">  
 
<!-- 配置bean的全类名:SpringIOC容器管理的类 -->
<bean id="test" class="com.spring.classs.Test">

<!-- 给管理的类赋值 -->

    <property name="name" value="周周"></property>
    <property name="age" value="25"></property>
</bean>
</beans>

测试类:

package com.spring.classs;

public class Test {
    private String name;
    private String age;
    public void setName(String name) {
        this.name = name;
    }
    public void setAge(String age) {
        this.age = age;
    }
    
    public void hellod(){
        System.out.println("hello:"+name+"年龄"+age);
    }
}

测试方法:

package com.spring.test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.spring.classs.Test;
public class Spring1 {
    
    public static void main(String[] args){
        //1.创建Spring的IOC容器对象
        ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext-Spring.xml");
        //2.从IOC容器中获取BEAN
        Test test =(Test)ctx.getBean("test");
        //3.调用方法
        test.hellod();
    }
}

 

转载于:https://www.cnblogs.com/yvanBk/p/8509572.html

你可能感兴趣的文章
highcharts曲线图
查看>>
extjs动态改变样式
查看>>
PL/SQL Developer 查询的数据有乱码或者where 字段名=字段值 查不出来数据
查看>>
宏定义
查看>>
ubuntu12.04 串口登录系统配置
查看>>
poj3061
查看>>
linux--多进程进行文件拷贝
查看>>
笔记:git基本操作
查看>>
Gold Smith第一章
查看>>
生成php所需要的APNS Service pem证书的步骤
查看>>
JavaWeb之JSON
查看>>
URL中的特殊字符处理
查看>>
HOT SUMMER 每天都是不一样,积极的去感受生活 C#关闭IE相应的窗口 .
查看>>
windows平台上编译mongdb-cxx-driver
查看>>
optionMenu-普通菜单使用
查看>>
MVC3分页传2参
查看>>
2016-2017-2点集拓扑作业[本科生上课时]讲解视频
查看>>
appium(13)- server config
查看>>
IIS负载均衡-Application Request Route详解第六篇:使用失败请求跟踪规则来诊断ARR...
查看>>
管理信息系统 第三部分 作业
查看>>