官网 : http://spring.io/
官方下载地址 : https://repo.spring.io/libs-release-local/org/springframework/spring/
GitHub : https://github.com/spring-projects
一句话概括:Spring是一个轻量级的控制反转(IoC)和面向切面(AOP)的容器(框架)。
Spring 框架是一个分层架构,由 7 个定义良好的模块组成。Spring 模块构建在核心容器之上,核心容器定义了创建、配置和管理 bean 的方式。
组成 Spring 框架的每个模块(或组件)都可以单独存在,或者与其他一个或多个模块联合实现。每个模块的功能如下:
Spring Boot与Spring Cloud
新建一个空白的maven项目
我们先用我们原来的方式写一段代码 .
public interface UserDao { public void getUser(); }
public class UserDaoImpl implements UserDao { @Override public void getUser() { System.out.println("获取用户数据"); } }
public interface UserService { public void getUser(); }
public class UserServiceImpl implements UserService { private UserDao userDao = new UserDaoImpl(); @Override public void getUser() { userDao.getUser(); } }
public class MyTest { public static void main(String[] args) { UserService userService = new UserServiceImpl(); userService.getUser(); } }
这是我们原来的方式 , 开始大家也都是这么去写的。那我们现在修改一下。
把Userdao的实现类增加一个。
public class UserDaoMySqlImpl implements UserDao { @Override public void getUser() { System.out.println("MySql获取用户数据"); } }
紧接着我们要去使用“MySql获取用户数据”的话 , 我们就需要去service实现类里面修改对应的实现。
public class UserServiceImpl implements UserService { private UserDao userDao = new UserDaoMySqlImpl(); // 这里修改 @Override public void getUser() { userDao.getUser(); } }
在假设, 我们再增加一个Userdao的实现类。
public class UserDaoOracleImpl implements UserDao { @Override public void getUser() { System.out.println("Oracle获取用户数据"); } }
那么我们要使用Oracle , 又需要去service实现类里面修改对应的实现。假设我们的这种需求非常大 , 这种方式就根本不适用了 , 每次变动 , 都需要修改大量代码。这种设计的耦合性太高了, 牵一发而动全身。
那我们如何去解决呢 ?
我们可以在需要用到他的地方 , 不去实现它 , 而是留出一个接口 , 利用set , 我们去代码里修改下。
public class UserServiceImpl implements UserService { private UserDao userDao; // 利用set实现 public void setUserDao(UserDao userDao){ this.userDao = userDao; } @Override public void getUser() { userDao.getUser(); } }
现在去我们的测试类里 , 进行测试 ;
public class MyTest { @Test public void getUser(){ UserServiceImpl service = new UserServiceImpl(); service.setUserDao( new UserDaoMySqlImpl() ); service.getUser(); //那我们现在又想用Oracle去实现呢 service.setUserDao( new UserDaoOracleImpl() ); service.getUser(); } }
大家发现了区别没有 ? 他们已经发生了根本性的变化,很多地方都不一样了,仔细去思考一下 , 以前所有东西都是由程序去进行控制创建 , 而现在是由我们自行控制创建对象,把主动权交给了调用者,程序不用去管怎么创建,怎么实现了,它只负责提供一个接口。
这种思想 , 从本质上解决了问题 , 我们程序员不再去管理对象的创建了 , 更多的去关注业务的实现。耦合性大大降低。这也就是IOC的原型 !
控制反转IoC(Inversion of Control),是一种设计思想,DI(依赖注入)是实现IoC的一种方法,也有人认为DI只是IoC的另一种说法。没有IoC的程序中 , 我们使用面向对象编程 , 对象的创建与对象间的依赖关系完全硬编码在程序中,对象的创建由程序自己控制,控制反转后将对象的创建转移给第三方,个人认为所谓控制反转就是:获得依赖对象的方式反转了。
IoC是Spring框架的核心内容,使用多种方式完美的实现了IoC,可以使用XML配置,也可以使用注解,新版本的Spring也可以零配置实现IoC。
Spring容器在初始化时先读取配置文件,根据配置文件或元数据创建与组织对象存入容器中,程序使用时再从Ioc容器中取出需要的对象。
采用XML方式配置Bean的时候,Bean的定义信息是和实现分离的,而采用注解的方式可以把两者合为一体,Bean的定义信息直接以注解的形式定义在实现类中,从而达到了零配置的目的。
控制反转是一种通过描述(XML或注解)并通过第三方去生产或获取特定对象的方式。在Spring中实现控制反转的是IoC容器,其实现方法是依赖注入(Dependency Injection,DI)。
注 : spring 需要导入commons-logging进行日志记录 . 我们利用maven , 他会自动下载对应的依赖项
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.2.0.RELEASE</version> </dependency>
如果使用单元测试,导入以下的依赖
<!--junit--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency>
public class Hello { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } public void show(){ System.out.println("Hello,"+ name ); } }
写了一个show()方法,方便测试。
<?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.xsd"> <bean id="hello" class="com.xxc.pojo.Hello"> <property name="name" value="spring"/> </bean> </beans>
public class MyTest { @Test public void test(){ //解析applicationContext.xml文件 , 生成管理相应的Bean对象 ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml"); //getBean : 参数即为spring配置文件中bean的id Hello hello = (Hello) context.getBean("hello"); hello.show(); } }
发现:我们发现我们不用再去new对象了,而是由spring在配置文件applicationContext.xml中帮我们创建了对象,我们使用对象的时候,只需要调用就可以了。
这个过程就叫控制反转 :
IOC是一种编程思想,由主动的编程变成被动的接收
我们在案例一中, 新增一个Spring配置文件
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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <bean id="mySqlImpl" class="com.xxc.dao.UserDaoMySqlImpl"/> <bean id="oracleImpl" class="com.xxc.dao.UserDaoOracleImpl"/> <bean id="serviceImpl" class="com.xxc.service.UserServiceImpl"> <property name="userDao" ref="mySqlImpl"/> </bean> </beans>
注意:注意: 这里的name并不是属性 , 而是set方法后面的那部分(setUserDao), 首字母小写。
引用另外一个bean , 不是用value 而是用 ref。相当于value是赋值,而ref是再次引用。
测试!
public class MyTest { @Test public void test(){ //解析beans.xml文件 , 生成管理相应的Bean对象 ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml"); //getBean : 参数即为spring配置文件中bean的id UserServiceImpl serviceImpl = (UserServiceImpl) context.getBean("serviceImpl"); serviceImpl.getUser(); } }
说明:因为在applicationContext.xml中ref的是mySqlImpl,所以返回结果就是UserDaoMySqlImpl中方法的结果。
OK , 到了现在 , 我们彻底不用再程序中去改动了 , 要实现不同的操作 , 只需要在xml配置文件中进行修改所谓的IoC,一句话搞定 : 对象由Spring 来创建 , 管理 , 装配 !