[Spring] 一篇文章了解Spring是什么
关于Spring入门的基础知识点
Spring简介
Spring是由Rod Johnson创建的轻量型容器,目的在于简化企业级开发。是一种容器框架
a.降低侵入性
b.提供了IOC(控制反转)和AOP(面向切面)的功能,可以降低组件之间的耦合度,便于系统的维护和升级
c. 为系统提供一个整体的解决方案,开发者除了能够使用其本身的功能以外,还可以将Spring框架和其他框架整合可以自由选择采用暗中技术来架构项目
总结:Spring框架的实质是管理软件中的对象,可以对软件中对象的创建以及对象间的依赖关系进行管理
优点
Spring中的模块
Spring框架由七个定义明确的模块组成
如果作为一个整体,这些模块为你提供了开发企业应用所需的一切。但你不必将应用完全基于Spring框架。你可以自由地挑选适合你的应用的模块而忽略其余的模块。
所有的Spring模块都是在核心容器之上构建的。容器定义了Bean是如何创建、配置和管理的。当你配置你的应用时,你会潜在地使用这些类。但是作为一名开发者,你最可能对影响容器所提供的服务的其它模块感兴趣。这些模块将会为你提供用于构建应用服务的框架,例如AOP和持久性。
更详细的可以参考百度百科:https://baike.baidu.com/item/spring%E6%A1%86%E6%9E%B6/2853288
A.Spring中的容器
在Spring中,所有的Java类都当成JavaBean来处理,这些Bean通过容器进行管理和使用。
这些类要满足下面几个规范:
1,是公共的类,并且含有公有的无参构造法方法
2,实例变量私有化提供 get / set 方法
Spirng中的容器中常用的两个管理对象的类是 BeanFactory和ApplicationContext两个,区别是
ApplicationContext继承了BeanFactory,因此含有更多的企业级的方法。并且两者都是接口。
使用中 BeanFactory 比较高效一些
B.Spring容器的实例化
1,导入相关 jar 包(先放在 src / lib 下)
2,在项目中加入Spirng配置文件 applicationContext.xml
3,使用BeanFactory或ApplicationContext 创建容器,只需要创建一个就足够了
配置文件:applicationContext.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" xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:util="http://www.springframework.org/schema/util" xmlns:jpa="http://www.springframework.org/schema/data/jpa" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd"> </beans>
Demo01.java
//相对路径 ApplicationContext ac=new ClassPathXmlApplicationContext("classpath:applicationContext.xml"); //绝对路径 ApplicationContext ac2=new FileSystemXmlApplicationContext("src"+File.separator+"applicationContext.xml"); System.out.println(ac2); // 关闭容器 ((AbstractApplicationContext) ac).close();