引言:小编也在努力学习的过程中,如果hxd们有什么建议或者错误纠正,请联系我哦
注意:本篇文章有大量的代码,都放在下载包里 点击下载
参考文档:Spring Framework Documentation
2002, 首次推出了Spring框架的雏形:interface21框架
Spring框架即以interface21框架为基础,经过重新设计,并不断丰富其内涵
Rod Johnson,Spring Framework创始人
Spring理念:是现有的技术更加容易使用,本身是一个大杂烩,整合了现有的技术框架!
SSH:Struct2 + Spring + Hibernate!
SSM:SpringMVC + Spring + Mybatis!
官网:Spring Framework
下载地址:repo.spring.io
maven 导包
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.3.9version>
dependency>
可能会用到这个,一般不用
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-jdbcartifactId>
<version>5.3.8version>
dependency>
总结:Spring就是一个轻量级的控制反转(IOC)和面向切面编程(AOP)的框架!
有七大模块。
Spring Boot
Spring Cloud
看代码spring-01
理解可以看Spring:IOC本质分析探究 - 灰信网(软件开发博客聚合) (freesion.com)
控制反转IOC(Inversion of Control),是一种设计思想,DI(依赖注入)是实现IOC的一种方法,也有人认为DI只是IOC的另一种说法。没有IOC的程序中 , 我们使用面向对象编程 , 对象的创建与对象间的依赖关系完全硬编码在程序中,对象的创建由程序自己控制,控制反转后将对象的创建转移给第三方,个人认为所谓控制反转就是:获得依赖对象的方式反转了。
采用XML方式配置Bean的时候,Bean的定义信息是和实现分离的,而采用注解的方式可以把两者合为一体,Bean的定义信息直接以注解的形式定义在实现类中,从而达到了零配置的目的。
控制反转是一种通过描述(XML或注解)并通过第三方去生产或获取特定对象的方式。在Spring中实现控制反转的是IoC容器,其实现方法是依赖注入(Dependency Injection,DI)。
参照代码spring-02-hellospring
参照代码spring-03-ioc2
使用无参构造创建对象
使用有参构造创建对象
下标赋值
<bean id="user" class="com.la.pojo.User">
<constructor-arg index="0" value="000LA"/>
bean>
通过类型创建
<bean id="user" class="com.la.pojo.User">
<constructor-arg type="java.lang.String" value="11111LA"/>
bean>
<bean id="user" class="com.la.pojo.User">
<constructor-arg name="name" value="LAb"/>
bean>
总结:在配置文件加载的时候,容器中的管理的对象就已经初始化了
参照代码spring-03-ioc2
<alias name="user" alias="userNew"/>
<bean id="userT" class="com.la.pojo.UserT" name="t uT2">
bean>
这个import,一般用于团队开发使用,他可以将多个配置文件,导入合并为一个
假设项目中有多个人开发,这三个人有不同的开发,不同的类需要注册在不同的bean中,我门可以用import将所有的beans.xml合并为一个总的
参照代码spring-04-di
前面说过了
【环境搭建】
复杂类型
public class Address {
private String address;
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
}
真实测试对象
public class Student {
private String name;
private Address address;
private String[] books;
private List<String> hobby;
private Map<String, String> card;
private Set<String> games;
private Properties info;
private String wife;
}
beans.xml
<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="student" class="com.la.pojo.Student">
<property name="name" value="LA"/>
bean>
beans>
测试类
public class MyTest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Student student = (Student) context.getBean("student");
System.out.println(student.getName());
}
}
完善后的beans.xml
<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="address" class="com.la.pojo.Address">
<property name="address" value="西安"/>
bean>
<bean id="student" class="com.la.pojo.Student">
<property name="name" value="LA"/>
<property name="address" ref="address"/>
<property name="books">
<array>
<value>红楼梦value>
<value>水浒传value>
<value>西游记value>
<value>三国演义value>
array>
property>
<property name="hobby">
<list>
<value>听歌value>
<value>敲代码value>
<value>看电影value>
list>
property>
<property name="card">
<map>
<entry key="身份证" value="123456123456"/>
<entry key="银行卡" value="620014214552"/>
map>
property>
<property name="games">
<set>
<value>LOLvalue>
<value>COCvalue>
set>
property>
<property name="wife">
<null/>
property>
<property name="info">
<props>
<prop key="学号">2019151352prop>
<prop key="性别">男prop>
<prop key="姓名">小明prop>
props>
property>
bean>
beans>
我们可以使用 P 命名空间和 C 命名空间进行注入
官方解释:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="user" class="com.la.pojo.User" p:name="LA" p:age="18"/>
<bean id="user2" class="com.la.pojo.User" c:name="leon" c:age="18"/>
beans>
测试:
@Test
public void test2() {
ApplicationContext context = new ClassPathXmlApplicationContext("userbeans.xml");
// User user = context.getBean("user", User.class);
// System.out.println(user);
User user2 = context.getBean("user2", User.class);
System.out.println(user2);
}
}
注意点:
P 命名 和 C 命名空间不能直接使用,需要导入xml约束!
xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"
单例模式(Spring默认机制)
<bean id="user2" class="com.la.pojo.User" c:name="leon" c:age="18" scope="singleton"/>
原型模式,每次从容器中 get 的时候,都会产生一个新对象!
<bean id="user2" class="com.la.pojo.User" c:name="leon" c:age="18" scope="prototype"/>
其余的 request,session,application,这些都在能在 web 开发中使用
在 Spring 中有三种装配的方式
环境搭建:一个人有两个宠物!
代码:spring-05-Autowired
<bean id="people" class="com.la.pojo.People" autowire="byName">
<property name="name" value="LA"/>
bean>
<bean id="people" class="com.la.pojo.People" autowire="byType">
<property name="name" value="LA"/>
bean>
小结:
jdk1.5支持的注解,Spring2.5就支持注解
要使用注解须知:
导入约束 。context 约束 : xmlns:context="http://www.springframework.org/schema/context"
配置注解的支持:
【重要】
<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
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd">
<context:annotation-config/>
beans>
@Autowired
直接在属性上使用即可!也可以在 set 方式上使用
使用 AutoWired 我们可以不用编写 Set 方法了,前提是你这个自动装配的属性在 IOC (Spring) 容器中存在,且符合名字
注意:Autowire默认按照类型装配(即ByType),默认情况下它要求依赖对象必须存在如果允许为null,可以设置它required属性为false,如果我们想使用按照名称装配(ByName),可以结合@Qualifier注解一起使用;
@Autowired是按照先byType 后 byName @Resources是按照先byName后byType((12条消息) @Resource注解的官方解释_cherry的博客-CSDN博客_@resource注解)
科普:
@Nullable 字段标记了这个注解,说明这个字段可以为null
如果定义了 Autowired 的 required 属性为 false ,说明这个对象可以为 null,否则不为空
public class People {
// 如果定义了 Autowired 的 required 属性为 false ,说明这个对象可以为 null,否则不为空
@Autowired(required = false)
private Cat cat;
@Autowired
private Dog dog;
private String name;
参照代码spring-06-anno
Spring 4 之后要使用注解开发,必须要保证 aop 的包导入了
在使用注解需要导入 context 约束,增加注解的支持
@Component : 组件, 放在类上,说明这个类被Spring管理了,就是bean
bean
属性如何注入
// 等价于
// @Component 组件
@Component
public class User {
// 相当于
@Value("LA")
public String name;
// 或者 value 使用在 setName 上也是可以给属性赋值
@Value("LA")
public void setName(String name) {
this.name = name;
}
}
衍生的注解
@Component 有几个衍生的注解,我们在 web 开发中,会按照 MVC 三层架构分层!
dao 【@Repository】
service 【@Service】
controller 【@Controller】
这四个注解功能相同,都是代表将某个类注册到 Spring 容器中装配,也就是装配 bean
自动装配注解
作用域
单例模式和原型模式
// 等价于 或者使用singleton
@Scope("prototype")
@Component
public class User {
// 相当于
@Value("LA")
public String name;
// 或者 value 使用在 setName 上也是可以给属性赋值
@Value("LA")
public void setName(String name) {
this.name = name;
}
}
小结
xml 与 注解:
xml 与 注解的最佳实践:
参照代码spring-07-appConfig
我们现在要完全不使用 Spring 的 xml 配置了,全权交给 java 来做
JavaConfig 是 Spring 的一个子项目,在 Spring4 之后,它成为了一个核心功能
实体类
// 这里注解的意思,就是说明这个类被Spring接管了,注册到了容器中
@Component
public class User {
@Value("LA") // 属性注入值
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "User{" +
"name='" + name + '\'' +
'}';
}
}
配置文件类
// @Configuration 代表这是一个配置类,就和我们之前看到beans.xml一样
// 这个也会被Spring容器托管,注册到容器中,因为他本来就是一个@Component
@Configuration
@ComponentScan("com.la")
@Import(MyConfig2.class)
public class MyConfig {
// 注册一个bean,就相当于之前写的一个bean标签
// 这个方法的名字就相当于bean标签的id属性
// 这个方法的返回值就相当于bean标签中的class属性
@Bean
public User getUser() {
return new User(); // 就是返回要注入到bean的对象
}
}
@Configuration
public class MyConfig2 {
}
测试类
public class MyTest {
public static void main(String[] args) {
// 如果完全使用了配置类方式去做,我们就只能通过 AnnotationConfig 上下文来获取容器,通过配置类的 class 对象加载
ApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);
User getUser = (User) context.getBean("getUser");
System.out.println(getUser.getName());
}
}
这种纯 java 的配置方式,在SpringBoot中随处可见
为什么要学习代理模式? 因为这就是 SpringAOP 的底层 【SpringAOP 和 SpringMVC】
代理模式的分类:
参照代码spring-08-proxy
角色分析:
代码步骤:
接口
// 租房的接口
public interface Rent {
public void rent();
}
真实角色
// 房东
public class Host implements Rent{
@Override
public void rent() {
System.out.println("房东要出租房子!");
}
}
代理角色
// 代理,中介
public class Proxy implements Rent{
private Host host;
public Proxy() {
}
public Proxy(Host host) {
this.host = host;
}
@Override
public void rent() {
seeHouse();
host.rent();
heTong();
fare();
}
// 看房
public void seeHouse() {
System.out.println("中介带你看房");
}
//
public void heTong() {
System.out.println("签租赁合同");
}
// 收中介费
public void fare() {
System.out.println("收中介费");
}
}
客户端访问代理角色
// 用户
public class Client {
public static void main(String[] args) {
// 房东要租房子
Host host = new Host();
// 代理,中介帮房东租房子,但代理角色一般会有一些附属操作
Proxy proxy = new Proxy(host);
// 你不用面对房东,直接找中介租房子
proxy.rent();
}
}
代理模式的好处:
缺点:
代码:spring-08-proxy中的demo2
聊聊AOP:
需要了解两个类:Proxy:代理,InvocationHandler:调用处理程序
动态代理的好处:
AOP为Aspect Oriented Programming的缩写,意为:面向切面编程,通过预编译方式和运行期间动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
提供声明式事务;允许用户自定义切面
SpringAOP 中,通过Advice定义横切逻辑,Spring 中支持5种类型的 Advice :
通知类型 | 连接点 | 实现接口 |
---|---|---|
前置通知 | 方法方法前 | org.springframework.aop.MethodBeforeAdvice |
后置通知 | 方法前 | org.springframework.aop.AfterReturningAdvice |
环绕通知 | 方法后 | org.aopalliance.intercept.MethodInterceptor |
异常抛出通知 | 方法抛出异常 | org.springframework.aop.ThrowsAdvice |
引介通知 | 类中增加新的方法属性 | org.springframework.aop.IntroductionInterceptor |
即 AOP 在不改变原有代码的情况下,去增加新功能
【重点】使用 AOP 织入,需要导入一个依赖包!
<dependency>
<groupId>org.aspectjgroupId>
<artifactId>aspectjweaverartifactId>
<version>1.9.7version>
<scope>runtimescope>
dependency>
方式一:使用 Spring 的 API 接口【主要SpringAPI接口实现】
参照代码spring-09-aop的log
方式二:自定义类来实现AOP【主要是切面定义】
参照代码spring-09-aop的diy
方式三:使用注解实现
参照代码spring-09-aop的diy
步骤:
整合相关 jar 包
Junit
mybatis
mysql数据库
spring相关的
aop织入
mybatis-spring【new】官方文档 mybatis-spring –
<dependencies>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.3.9version>
dependency>
<dependency>
<groupId>org.junit.jupitergroupId>
<artifactId>junit-jupiter-apiartifactId>
<version>5.7.2version>
dependency>
<dependency>
<groupId>mysqlgroupId>
<artifactId>mysql-connector-javaartifactId>
<version>8.0.25version>
dependency>
<dependency>
<groupId>org.mybatisgroupId>
<artifactId>mybatisartifactId>
<version>3.5.7version>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-jdbcartifactId>
<version>5.3.9version>
dependency>
<dependency>
<groupId>org.aspectjgroupId>
<artifactId>aspectjweaverartifactId>
<version>1.9.7version>
dependency>
<dependency>
<groupId>org.mybatisgroupId>
<artifactId>mybatis-springartifactId>
<version>2.0.6version>
dependency>
dependencies>
编写配置文件
测试
参照代码spring-10-mybatis
参照代码中的UserMapper,UserMapperImpl,UserMapper.xml,applicationConfig.xml,mybatis-config.xml,spring-dao.xml,MyTest中的test以及selectUser
事务的 ACID 原则:
参照代码spring-11-transaction
在这个代码中:
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<constructor-arg ref="dataSource" />
bean>
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="add" propagation="REQUIRED"/>
<tx:method name="update" propagation="REQUIRED"/>
<tx:method name="delete" propagation="REQUIRED"/>
<tx:method name="query" read-only="true"/>
<tx:method name="*" propagation="REQUIRED"/>
tx:attributes>
tx:advice>
<aop:config>
<aop:pointcut id="txPointCut" expression="execution(* com.la.dao.*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPointCut"/>
aop:config>
测试发现,当不使用配置事务的时候,数据库中会添加上数据,却不会删除这条数据
但是配置事务后,数据库不会添加上数据。
为什么需要事务?