1.Spring

spring : 春天给——》软件行业带来了春天。

开发目的: 解决企业级开发的复杂性。

使用javaBean 代替 EDG

官网: https://spring.io/

spring 理念: 使得现有的技术更加容易使用,本身就是一个大杂烩,整合了现有的技术框架

SSH : Struct + Spring + Hibernate

SSM : Spring + SpringMVC + Maven

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<!-- spring web mvc-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.22</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-JDBC</artifactId>
<version>5.3.22</version>
</dependency>



1.1 优点

  • Spring 是一个轻量级免费的开源框架(容器)
  • Spring是一个轻量级的,非入侵式的框架!
  • IOC:控制反转
  • AOP: 面向切面编程
  • 支持事务处理,对框架整合的支持

    一句话: Spring就是一个轻量级的控制反转(IOC)和面向切面编程(AOP)的容器

1.1.1SpringBean的生命周期:

详细

  1. 实例化bean对象:反射的方式生成对象

  2. 设置对象属性(填充bean的属性):

    1. populateBean(),循环依赖的问题
  3. 检查Aware相关接口并设置相关依赖:

    1. invokeAwareMethod(完成BeanName,BeanFactory,BeanClassLoader对象的属性设置)
  4. beanPostProcessor前置处理:

    1. 使用比较多的(ApplicationContextPostProcess,设置ApplicationContext等对象)
  5. 检查是否initalizingBean以决定是否调用afterPropertiesSet方法

  6. 检查是否配置有自定义的init-method:判断是否实现initalizingbean接口,如果有,调用AfterPropertiesSet方法,没有就不调用

  7. BeanPostProcessor后置处理对象:

    1. Spring的AOP就是在此处实现的,AbstractAutoProxyCreator注册Destuction相关的回调接口
  8. 是否实现DisposableBean接口,调用DestoryMethod方法

1.2 组成

AOP ORM Spring Web Spring Web MVC
AOP DAO Spring Context Spring Web MVC
CORE CORE CORE CORE

核心容器(Spring Core)

  核心容器提供Spring框架的基本功能。Spring以bean的方式组织和管理Java应用中的各个组件及其关系。Spring使用BeanFactory来产生和管理Bean,它是工厂模式的实现。BeanFactory使用控制反转(IoC)模式将应用的配置和依赖性规范与实际的应用程序代码分开。

应用上下文(Spring Context)

  Spring上下文是一个配置文件,向Spring框架提供上下文信息。Spring上下文包括企业服务,如JNDI、EJB、电子邮件、国际化、校验和调度功能。

Spring面向切面编程(Spring AOP)

  通过配置管理特性,Spring AOP 模块直接将面向方面的编程功能集成到了 Spring框架中。所以,可以很容易地使 Spring框架管理的任何对象支持 AOP。Spring AOP 模块为基于 Spring 的应用程序中的对象提供了事务管理服务。通过使用 Spring AOP,不用依赖 EJB 组件,就可以将声明性事务管理集成到应用程序中。

JDBC和DAO模块(Spring DAO)

  JDBC、DAO的抽象层提供了有意义的异常层次结构,可用该结构来管理异常处理,和不同数据库供应商所抛出的错误信息。异常层次结构简化了错误处理,并且极大的降低了需要编写的代码数量,比如打开和关闭链接。

对象实体映射(Spring ORM)

  Spring框架插入了若干个ORM框架,从而提供了ORM对象的关系工具,其中包括了Hibernate、JDO和 IBatis SQL Map等,所有这些都遵从Spring的通用事物和DAO异常层次结构。

Web模块(Spring Web)

  Web上下文模块建立在应用程序上下文模块之上,为基于web的应用程序提供了上下文。所以Spring框架支持与Struts集成,web模块还简化了处理多部分请求以及将请求参数绑定到域对象的工作。

MVC模块(Spring Web MVC)

  MVC框架是一个全功能的构建Web应用程序的MVC实现。通过策略接口,MVC框架变成为高度可配置的。MVC容纳了大量视图技术,其中包括JSP、POI等,模型来有JavaBean来构成,存放于m当中,而视图是一个街口,负责实现模型,控制器表示逻辑代码,由c的事情。Spring框架的功能可以用在任何J2EE服务器当中,大多数功能也适用于不受管理的环境。Spring的核心要点就是支持不绑定到特定J2EE服务的可重用业务和数据的访问的对象,毫无疑问这样的对象可以在不同的J2EE环境,独立应用程序和测试环境之间重用。

2. IOC理论

  1. userDao

  2. UserDaoImpl

  3. UserService

  4. UserServiceImpl

    在我们之前的业务中,用户的需求可能会影响我们原来的代码

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    public class UserServiceImpl implements UserService {

    private UserDao userDao = new UserDaoImpl();
    private UserDao userDao1 = new UserMysqlDaoImpl();
    private UserDao userDao2 = new UserOracleDaoImpl();

    @Override
    public void getUser() {
    //当用户需求改变,我们将要每次都要改变代码,很麻烦,从而springIoc的简单就来了。
    userDao1.getUser();//这是新添加的需求,我要改源代码
    userDao2.getUser(); //这又是新添加的需求,我又要改。
    userDao.getUser();

    }
    }

    1
    2
    3
    4
    5
    6
    7
    8
    public class Main {
    public static void main(String[] args) {
    UserService userService = new UserServiceImpl();
    userService.getUser();

    System.out.println("Hello world!");
    }
    }

2.1 IOC本质

控制反转IOC是一种编程思想,DI(依赖注入)实现IOC的一种方法,可以说Ioc是思想 DI则是实现方式。

IOC可以说是:把创建和查找依赖对象的控制权交给了容器,由容器进行注入组合对象,所以对象与对象之间是 松散耦合,这样也方便测试,利于功能复用,更重要的是使得程序的整个体系结构变得非常灵活。

采用XML的方式配置bean时候,bean的定义信息和实现分离的,而采用注解的方式可以把两者合为一体,bean的定义直接以注解的形式定义在实现类中,从而达到零配置的目的。

控制反转是一种通过描述(XML或注解)并通过第三方去生产或获取特定对象的方式,在spring中实现控制反转的是IOC容器,其实现实依赖注入(DI)。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@Override
public void getUser() {
System.out.println("默认获取数据");

}
public interface UserDao {
void getUser();
}
private UserDao userDao;
private UserDao userDao1;

public void setUserDao(UserDao userDao) {
this.userDao = userDao;
}
/* private UserDao userDao = new UserDaoImpl();
private UserDao userDao1 = new UserMysqlDaoImpl();
private UserDao userDao2 = new UserOracleDaoImpl();*/

@Override
public void getUser() {
//当用户需求改变,我们将要每次都要改变代码,很麻烦,从而springIoc的简单就来了。
//userDao1.getUser();//这是新添加的需求,我要改源代码
// userDao2.getUser(); //这又是新添加的需求,我又要改。
userDao.getUser();


}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?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.xh.dao.impl.UserMysqlDaoImpl">

</bean>
<bean id="oracleImpl" class="com.xh.dao.impl.UserOracleDaoImpl">
</bean>

<bean id="UserServiceImpl" class="com.xh.service.impl.UserServiceImpl">
<!--
ref: 引用spring容器中创建好的对象
value: 具体的值,基本数据类型
-->
<property name="userDao" ref="mysqlImpl" />
</bean>

<!-- 我来捋一捋
UserDao作为接口,有一个方法 UserDaoImpl 实现该方法
然后UserService接口类方法同名 UserServiceImpl实现改方法
id = oracle 也就是context.getBean("oracle"); 标识符
UserServiceImpl userService1 = (UserServiceImpl) context.getBean("oracle");
<property name="userDao" ref="oracleImpl" />
userDao 也就是 set方法的名字
ref 指向 oracleImpl也就是下边这条语句
<bean id="oracleImpl" class="com.xh.dao.impl.UserOracleDaoImpl">
</bean>
-->
<bean id="oracle" class="com.xh.service.impl.UserServiceImpl">
<!--
ref: 引用spring容器中创建好的对象
value: 具体的值,基本数据类型
-->

<property name="userDao" ref="oracleImpl" />
</bean>

</beans>

2.2 IOC创建对象的方式

  1. 使用无参构造创建对象,没有无参构造将会报错,默认

    1
    2
    3
    4
    5
    <!--
    无参构造
    <bean id="main" class="com.xh.Main">
    <property name="user" value="作者"/>
    </bean>-->
  1. 假设我们要使用有参构造。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
public class Main {

private String user;

@Override
public String toString() {
return "Main{" +
"user='" + user + '\'' +
'}';
}

/* public Main() {
System.out.println("无参构造");
}*/



public Main(String user) {
this.user = user;
}

public void setUser(String user) {
this.user = user;
}
public void show(){
System.out.println("user:"+user);
}

}

-----------------------------------------------------
public class MyTest {
public static void main(String[] args) {
//spring相当于婚介网站
ApplicationContext context= new ClassPathXmlApplicationContext("bean.xml");

Main main = (Main) context.getBean("main");
main.show();
// Main main1 = (Main) context.getBean("main1");

}
}
   1. 下标赋值
1
2
3
4
<bean id="main" class="com.xh.Main">
<constructor-arg index="0" value="小黑">
</constructor-arg>
</bean>
  1. 通过类型创建,不推荐使用

    1
    2
    3
    4
    5
    6
    <!--第二种
    通过类型创建,不推荐使用
    -->
    <bean id="main" class="com.xh.Main">
    <constructor-arg type="java.lang.String" value="小黑"/>
    </bean>
  2. 直接通过参数名

    1
    2
    3
    4
    <bean id="main" class="com.xh.Main">
    <constructor-arg name="user" value="小黑"/>
    </bean>

重点使用name有参构造好用,无参构造直接第一个配置

总结:在配置文件加载的时候,容器中的管理对象就已经初始化了

3 Spring配置

3.1 别名

1
2
3
4
5
6
7
<!--参数名-->
<bean id="main" class="com.xh.Main">
<constructor-arg name="user" value="小黑"/>
</bean>

<!-- alias 起别名 name 是 Main main = (Main) context.getBean("main"); -->
<alias name="main" alias="yanliang"/>
1
2
Main main = (Main) context.getBean("yanliang");
Main main1 = (Main) context.getBean("main");

3.2 Bean配置

1
2
3
4
<bean id="userT" class="com.xh.UserT" name="user2,u2 u3;u4">
<property name="user" value="小黑"/>
</bean>
<!-- // 别名可控制 UserT userT = (UserT) context.getBean("u2");-->

3.3 Import

一般用于团队开发,将多个模块导程一个

1
//        ApplicationContext context=  new ClassPathXmlApplicationContext("application.xml");
1
2
3
4
application.xml
<import resource="bean.xml"/>
<import resource="bean2.xml"/>
<import resource="bean1.xml"/>

无需担心重名他会自己选择。

4 依赖注入(DI)

4.1 构造器注入

也就是我们常用的有参构造和无参构造

4.2 Set方式注入【重点】

依赖注入:set注入

依赖: bean对象的创建依赖于容器

注入: bean对象中的所有属性由容器注入

环境搭建

  1. 复杂类型

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    public class Address {
    private String address;

    public String getAddress() {
    return address;
    }

    public void setAddress(String address) {
    this.address = address;
    }
    }
  1. 真实测试
1
2
3
4
5
6
7
8
private String name;
private Address address;
private String[] books;
private List<String> hobby;
private Map<String,String> card;
private Set<String> games;
private String wife;
private Properties info;
  1. Bean.xml

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    <?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="student" class="com.xh.Student">
    <!--第一种普通值注入 value-->
    <property name="name" value="小黑"/>
    </bean>

    </beans>
    1. Test

      1
      2
      3
      4
      5
      6
      7
      public class MyTest {
      public static void main(String[] args) {
      ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");
      Student student = (Student) context.getBean("student");
      System.out.println(student.getName());

      }

4.3 拓展方式注入

我们可以通过p命名空间注入

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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: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">


<!-- p set 命名空间注入,可以简介注入 : property-->
<bean id="user" class="com.xh.User" p:uname="小黑" p:age="18">
</bean>
<!-- C命名空间必须通过构造器注入才行 有参无参构造 construct-args 注入 -->
<bean id="user2" class="com.xh.User" c:age="18" c:uname="颜亮"/>
</beans>

Test

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
P:   
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");
Student student = (Student) context.getBean("student");
//System.out.println(student.getName());
System.out.println(student.toString());

C:
@Test
public void test(){
ApplicationContext context = new
ClassPathXmlApplicationContext("userBean.xml");
User user = context.getBean("user2", User.class);
System.out.println(user);
}

注意p:命名空间使用Set方式注入,而C:命名空间是使用构造器注入,有参构造,无参构造都要有,且p,c都需要导入依赖才能使用,不能直接使用

1
2
3
xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"

4.4 Bean作用域

单例模式:(Spring默认机制)

1
2
<bean id="user3" class="com.xh.User" c:age="18" c:uname="颜亮" scope="singleton"/>

原型模式:每次从容器中get的时候都会产生一个新对象

1
2
<bean id="user4" class="com.xh.User" c:age="18" c:uname="颜亮" scope="prototype"/>

其余的request ,session,application这些只能在web开发中使用!

5 bean的自动装配

自动装配是spring满足bean依赖的一种方式

spring 会在上下文自动寻找,并自动给bean装配属性

在spring中有三种装配方式:

  1. 在xml中显示的配置
  2. 在java中显示的配置
  3. 隐式的自动装配bean【重要】

5.1测试

环境搭建一个人有两个宠物

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
public class Cat {
public void shout(){
System.out.println("苗");
}
}
public class Dog {
public void shout(){
System.out.println("你的狗叫什么?");
}
}

public class People {
private Cat cat;
private Dog dog;
private String name;

@Override
public String toString() {
return "People{" +
"cat=" + cat +
", dog=" + dog +
", name='" + name + '\'' +
'}';
}

public Cat getCat() {
return cat;
}

public void setCat(Cat cat) {
this.cat = cat;
}

public Dog getDog() {
return dog;
}

public void setDog(Dog dog) {
this.dog = dog;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}
}

public class MyTest {

@Test
public void test(){
ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");
People people = context.getBean("people",People.class);
people.getDog().shout();
people.getCat().shout();

}

}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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="dog" class="com.xh.Dog">

</bean>
<bean id="cat" class="com.xh.Cat">

</bean>
<bean id="people" class="com.xh.People">
<property name="name" value="胡小黑"/>
<property name="cat" ref="cat"/>
<property name="dog" ref="dog"/>

</bean>

</beans>

5.2 ByName自动装配

1
2
3
4
5
6
7
8
<!--   ByName:会自动 在容器上下文查找,和自己对象set方法后边对应的 bean id -->
<bean id="people" class="com.xh.People" autowire="byName">
<property name="name" value="是小胡呀"/>
</bean>
<bean id="dog" class="com.xh.Dog">

</bean>
<bean id="cat" class="com.xh.Cat">
1
2
3
4
5
6
7
8
9
10

public void setCat(Cat cat) {
this.cat = cat;
}
public void setDog(Dog dog) {
this.dog = dog;
}
public void setName(String name) {
this.name = name;
}

5.3 ByType

1
2
3
4
5
6
7
8
<!--    ByType 不会根据id进行查找,和自己对象属性类型相同的bean-->
<bean id="people" class="com.xh.People" autowire="byType">
<property name="name" value="是小胡呀"/>
</bean>
<bean id="dog" class="com.xh.Dog">

</bean>
<bean id="11cat" class="com.xh.Cat">

小结:

byName的时候需要保证bean的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致。

byType的时候需要保证bean的class唯一,并且这个bean需要和自动注入的属性的类型一致。

5.4 注解实现自动配置

JDk1.5以后支持注解,spring 2.5支持注解‘

使用注解需要注意的是:

  1. 导入约束context约束

  2. 配置注解的支持

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    <?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
    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/>

    <bean class="example.SimpleMovieCatalog" primary="true">
    <!-- inject any dependencies required by this bean -->
    </bean>

    <bean class="example.SimpleMovieCatalog">
    <!-- inject any dependencies required by this bean -->
    </bean>

    <bean id="movieRecommender" class="example.MovieRecommender"/>

    </beans>

    5.4.1 @Autowired

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    <?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:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd
    ">
    <!--开启注解的支持-->
    <context:annotation-config/>

    <bean id="dog" class="com.xh.Dog">
    </bean>
    <bean id="cat" class="com.xh.Cat">
    </bean>
    <bean id="people" class="com.xh.People"></bean>
    <!-- <bean id="people" class="com.xh.People">
    <property name="name" value="胡小黑"/>
    <property name="cat" ref="cat"/>
    <property name="dog" ref="dog"/>

    </bean>
    -->
    <!-- ByName:会自动 在容器上下文查找,和自己对象set方法后边对应的 beanid-->
    <!-- <bean id="people" class="com.xh.People" autowire="byName">
    <property name="name" value="是小胡呀"/>
    </bean>-->

    <!-- ByType 不会根据id进行查找,和自己对象属性类型相同的bean-->
    <!--
    <bean id="people" class="com.xh.People" autowire="byType">
    <property name="name" value="是小胡呀"/>
    </bean>
    -->
    </beans>
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    package com.xh;

    import org.springframework.beans.factory.annotation.Autowired;

    public class People {
    @Autowired
    private Cat cat;
    @Autowired //使用之后get set方法都不需要了。
    private Dog dog;
    private String name;

    @Override
    public String toString() {
    return "People{" +
    "cat=" + cat +
    ", dog=" + dog +
    ", name='" + name + '\'' +
    '}';
    }

    public Cat getCat() {
    return cat;
    }

    public void setCat(Cat cat) {
    this.cat = cat;
    }

    public Dog getDog() {
    return dog;
    }

    public void setDog(Dog dog) {
    this.dog = dog;
    }

    public String getName() {
    return name;
    }

    public void setName(String name) {
    this.name = name;
    }
    }

    直接在属性上使用,也可以在set方式上使用

    使用Autowired我们连set方法都不需要使用了,前提条件是你这个自动装配的属性在IOC(Spring)容器中存在,且符合byName;

    科普:

    1
    @Nullable 字段标记了这个注解,说明字段可以为null
    1
    2
    3
    public @interface Autowired {
    boolean required() default true;
    }
    1
    2
    @Autowired(required = false) //如果显示的定义了Autowired的required为false标志这个值可以为空否则不允许为空

    如果@Autowired自动装配环境比较复杂的时候自动装配无法通过一个注解@Autowired完成的时候,使用@Qualifier(value=”*“)去配置@Autowired的使用,指定一个唯一的bean对象注入

    java自带@Resource

    @Resource注解,首先去spring容器中查找id名字,找不到查找类型,在找不到报错。唯一,不能查找重复的.

    1
    2
    3
    @Autowired//使用之后get set方法都不需要了。
    @Qualifier(value = "dog") //如果存在多对相同的,需要精准查找到一个,就需要这个注解指定了
    private Dog dog;

@Resource

1
2
3
4
 @Resource(name="cat")
private Cat cat;
@Resource
private Dog dog;

@Resource 和 @Autowired区别

  1. 都是用来自动装配的,都可以放到属性字段上
  2. @Autowired 通过byname的方式实现,而且必须要求这个对象存在,否则报错
  3. @Resource首先去spring容器中查找id名字,找不到查找类型(ByType),在找不到报错。唯一,不能查找重复的.
  4. 执行顺序不同 @Autowired通过ByType的方式实现,@Resource默认通过byName的方式实现

6 使用注解开发

在spring4以后,要使用注解开发,必须导入Aop依赖

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
">
<!--指定要扫描的包,这个包下面的注解就会生效-->
<context:component-scan base-package="com.xh"/>

<context:annotation-config></context:annotation-config>
<!-- <bean id="user" class="com.xh.dao.User"/>-->
</beans>
  1. bean注入

  2. 属性如何注入

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    @Component // 组件 等价于<bean id="user" class="com.xh.dao.User"/>
    public class User {
    public String name ; //= "小黑";

    //相当于<property name="name" value="小黑">
    @Value("小黑")
    public void setName(String name) {
    this.name = name;
    }
    }

  1. 衍生的注解

    @Component 有几个衍生注解,我们在web开发中,会按照mvc三层架构分层

    dao 【@Repository】

    bean 【@Service】

    service 【@Controller】

    这四个注解功能都是一样的,都是代表将某个类注册到spring中装配。

  2. 自动装配配置

    @Autowired

  3. 作用域

    @Scope(“”) 指定模式 单例或者原型模式

  4. 总结

    xml与注解

    • Xml更加万能,适用于任何场所!维护方便简单

    • 注解 不是自己的类使用不了,维护相对复杂!

    Xml与注解最佳实践

    • xml用来管理bean

    • 注解只负责完成属性的注入

    • 我们在使用的过程中只需要注意一个问题:只需要开启注解的支持。

      1
      2
      <context:component-scan base-package="com.xh"/>
      <context:annotation-config></context:annotation-config>

7 使用java方式配置spring

javaConfig

实体类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.xh.bean;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component //这里这个注解的意思说明这个类被注册到Spring中
public class User {
private String name;

public String getName() {
return name;
}
@Value("罗小黑")
public void setName(String name) {
this.name = name;
}

@Override
public String toString() {
return "User{" +
"name='" + name + '\'' +
'}';
}
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xh.config;

import com.xh.bean.User;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

@Configuration //这个也会被Spring容器托管,注册到容器中
//因为他@Configuration代表这个是一个配置类,就和我们之前看的bean.xml
@ComponentScan("com.xh")
@Import(UserConfig1.class) //导入另一个配置类
public class UserConfig {
@Bean //注册一个bean就相当于一个Springxml的bean表情
//这个名字的方法,就想当与
public User user(){
return new User();

}
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import com.xh.bean.User;
import com.xh.config.UserConfig;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class MyTest {

@Test
public void test1(){
//如果完全使用了配置类的方式去做,我们就只能通过AnnotationConfig 上下文来获取容器
ApplicationContext context = new AnnotationConfigApplicationContext(UserConfig.class);
User user = context.getBean("user",User.class);
System.out.println(
user.getName()
);
}
}

这种纯java的配置在SringBoot随处可见。

8 AOP 之前代理模式

为什么要学习代理模式?

这就是SpringAop的底层 【Spring AOP 】 【Spring MVC】

8.1 静态代理模式 :

  • 静态代理模式 :

    • 抽象角色: 一般使用接口和抽象类来解决

      1
      2
      3
      4
      public interface Rent {
      public void rent();
      }

  • 真实角色: 被代理的角色

    1
    2
    3
    4
    5
    6
    7
    public class Host implements Rent {
    @Override
    public void rent() {
    System.out.println("房东出租房子");

    }
    }
  • 代理角色: 代理真实角色,代理真实角色后,我们一般会做一些附属操作

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    public class Proxy implements Rent{
    private Host host;

    public Proxy() {
    }

    public Proxy(Host host) {
    this.host = host;
    }

    @Override
    public void rent() {
    host.rent();
    }

    //中介带你看房
    public void seeHouse(){
    System.out.println("中介带你看房");
    }
    //收取中介费用
    public void fare(){
    System.out.println("收取中介费");
    }
    }
  • 客户:访问代理角色

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    public class Client {
    public static void main(String[] args) {
    /* Host host = new Host();
    host.rent();*/
    //房东不在,找代理
    Host host = new Host();
    //代理 中介帮房东租房子,代理一般有附属条件
    Proxy proxy = new Proxy(host);
    //你不需要面对房东,直接可以租到房子
    proxy.rent();
    }
    }
  • 代理模式的好处

    • 可以使得真实角色的操作更加纯粹,不用去关注一些公共的业务

    • 公共也就交给代理角色,实现了业务分工

    • 公共业务发生拓展的时候,方便集中管理

    缺点

    一个真实的角色会产生一个代理角色,代码量会翻倍,开发效率会变低。

8.2 再次理解

对应demo02.

8.3 动态代理

  • 动态代理和静态代理一样

  • 动态代理的代理是动态生成的,不是我们直接写好的

  • 动态代理底层是反射

  • 动态代理分为两大类: 基于接口的动态代理,基于类的动态代理

    • 基于接口 —- JDK实现动态代理
    • 基于类: cglib
    • java字节码实现:javaist

    需要了解两个类Proxy,InvocationHandler

    动态代理的好处:

    • 可以使得真实角色的操作更加纯粹,不用去关注一些公共的业务。

    • 公共业绩交给了代理角色,实现了业务的分工

    • 公共业务发生拓展的时候,方便集中管理

    • 一个动态代理类代理的是一个接口,一般就是对应一类接口。

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    public class Client {
    public static void main(String[] args) {
    //真实角色
    Host host = new Host();
    //代理角色:现在没有
    ProxyInvocationHandler proxyInvocationHandler = new ProxyInvocationHandler();
    proxyInvocationHandler.setRent(host);
    Rent proxy = (Rent) proxyInvocationHandler.getProxy();
    proxy.rent();

    }
    }

    public class Host implements Rent {
    @Override
    public void rent() {
    System.out.println("房东出租房子");

    }
    }

    public class ProxyInvocationHandler implements InvocationHandler {
    //被代理的接口
    private Rent rent;

    public Rent getRent() {
    return rent;
    }

    public void setRent(Rent rent) {
    this.rent = rent;
    }

    public Object getProxy() {
    return Proxy.newProxyInstance(this.getClass().getClassLoader(),rent.getClass().getInterfaces(),this);
    }
    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
    //动态代理实例,并返回结果
    seeHouse();
    Object result = method.invoke(rent,args);
    face();
    return result;
    }

    public void seeHouse(){
    System.out.println("中介看房子");
    }
    public void face(){
    System.out.println("收取中介费用");

    }
    }

    public interface Rent {
    public void rent();
    }
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    public class Client {
    public static void main(String[] args) {
    UserServiceImpl userService = new UserServiceImpl();
    //代理角色不存在
    ProxyInvocationHandler pih = new ProxyInvocationHandler();
    pih.setTarget(userService);
    UserService proxy = (UserService) pih.getProxy();
    proxy.delete();
    }
    }

    public class ProxyInvocationHandler implements InvocationHandler {
    //被代理的接口
    private Object target;


    public void setTarget(Object target) {
    this.target = target;
    }

    public Object getProxy() {
    return Proxy.newProxyInstance(this.getClass().getClassLoader(),target.getClass().getInterfaces(),this);
    }
    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
    //动态代理实例,并返回结果
    log(method.getName());//反射方法
    Object result = method.invoke(target,args);
    return result;
    }

    public void log(String msg){
    System.out.println("执行了"+ msg + "方法" );
    }

    }

9 spring Aop(面向切面编程)

9.1什么是Aop

aop是面向切面编程,通过预编译方式和运行期动态实现程序功能的唯一维护的一种技术,Aop是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范式,利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各个部分之间的耦合度降低,提高程序的可重用性,同时提高开发的效率。

9. 2 Aop在spring的作用

提供声明式事务;允许用户自定义切面

  • 横切关注(ASPECT):横切关注点,被模块化的特殊对象。(类)
  • 切面(ASPECT):切面必须要完成的工作。(类的方法)
  • 目标(Advice): 被通知对象。
  • 代理(Proxy):向目标对象应用通知之后创建的对象。
  • 切入点(PointCut):切面通知执行的“地点”的定义
  • 连接点(joinPoint): 与切入点匹配的执行点。

Spring Aop中支持5种类型的Advice

前置通知: 方法前

后置通知: 方法后

环绕通知:方法前后

异常抛出通知: 方法抛出异常

引介通知:类中增加新的方法属性

9.3 Spring中使用Aop

1
2
3
4
5
6
7
8
9
<dependencies>
<dependency>
<!--使用springApi必须必须导入的包-->
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.5</version>
</dependency>
</dependencies>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">

<!-- an HTTP Session-scoped bean exposed as a proxy -->
<bean id="userPreferences" class="com.something.UserPreferences" scope="session">
<!-- instructs the container to proxy the surrounding bean -->
<aop:scoped-proxy/> (1)
</bean>

<!-- a singleton-scoped bean injected with a proxy to the above bean -->
<bean id="userService" class="com.something.SimpleUserService">
<!-- a reference to the proxied userPreferences bean -->
<property name="userPreferences" ref="userPreferences"/>
</bean>
</beans>

方式一:使用spring的API接口【主要SpringAPI接口实现】

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
public class UserServiceImpl implements UserService{
@Override
public void add() {
System.out.println("add一个用户");
}

@Override
public void delete() {
System.out.println("delete一个用户");
}

@Override
public void update() {
System.out.println("update一个用户");
}

@Override
public void query() {
System.out.println("query一个用户");
}
}

public interface UserService {
void add();
void delete();
void update();
void query();
}
public class Log implements MethodBeforeAdvice {
//method:要执行的目标对象的方法
//objects: 参数
//target 目标对象

@Override
public void before(Method method, Object[] args, Object target) throws Throwable {
System.out.println(target.getClass().getName()+"的"+method.getName()+"被执行了");
}
}

public class AfterLog implements AfterReturningAdvice {
//returnValue:返回值
@Override
public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
System.out.println("执行了"+ method.getName()+ "方法,返回结果为"+returnValue);
}
}

public class MyTest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");
//注意,动态代理,代理的是接口
UserService userService = (UserService) context.getBean("userService");
userService.add();
userService.query();
userService.update();
userService.delete();
}
}


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?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:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">

<!-- 注册bean-->
<bean id="userService" class="com.xh.service.UserServiceImpl"></bean>
<bean id="log" class="com.xh.log.Log"/>
<bean id="afterLog" class="com.xh.log.AfterLog"/>



<!-- 配置aop-->
<aop:config>
<!-- 切入点-->
<aop:pointcut id="pointcut" expression="execution(* com.xh.service.UserServiceImpl.*(..))"/>


<!--执行环绕增加-->
<aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
</aop:config>
</beans>

方式二:自定义来实现AOP【主要是切面定义】

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?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:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">

<!-- 注册bean-->
<bean id="userService" class="com.xh.service.UserServiceImpl"></bean>
<bean id="log" class="com.xh.log.Log"/>
<bean id="afterLog" class="com.xh.log.AfterLog"/>



<!-- 方式一:需要原生SpringAop接口

配置aop:需要导入AOp约束-->
<!-- <aop:config>
&lt;!&ndash;切入点&ndash;&gt;
<aop:pointcut id="pointcut" expression="execution(* com.xh.service.UserServiceImpl.*(..))"/>


&lt;!&ndash;执行环绕增加&ndash;&gt;
<aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
</aop:config>-->
<!-- 方式二 自定义类 -->
<bean id="diy" class="com.xh.diy.DiyPointCut"></bean>
<aop:config>
<!--自定义切面 ref要引用的类-->
<aop:aspect ref="diy">
<!--切入点-->
<aop:pointcut id="point" expression="execution(* com.xh.service.UserServiceImpl.*(..))"/>
<!-- 通知 -->
<aop:before method="before" pointcut-ref="point"></aop:before>
<aop:after method="after" pointcut-ref="point"></aop:after>

</aop:aspect>
</aop:config>


</beans>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

public class DiyPointCut {

public void before(){
System.out.println("方法执行前");
}

public void after(){
System.out.println("方法执行后");
}
}

public class MyTest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");
//注意,动态代理,代理的是接口
UserService userService = (UserService) context.getBean("userService");
userService.add();
userService.query();
userService.update();
userService.delete();
}
}

方法三:使用注解

1
2
3
4
    <!--方式三-->
<bean id="annotationPointCut" class="com.xh.diy.AnnotationPointCut"/>
<!-- 开启注解支持 JDK(默认 proxy-target-class="false") cglib(proxy-target-class="true")-->
<aop:aspectj-autoproxy />
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

//方式三使用注解来实现
@Aspect //标注这个类是一个切面
public class AnnotationPointCut {
@Before("execution(* com.xh.service.UserServiceImpl.*(..))")
public void before(){
System.out.println("=====方法执行前======");
}

@After("execution(* com.xh.service.UserServiceImpl.*(..))")
public void after(){
System.out.println("=====方法执行后======");
}

//在环绕增强中,我们可以给定一个类,代表我们要处理切入的点
@Around("execution(* com.xh.service.UserServiceImpl.*(..))")
public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {

// Signature signature = proceedingJoinPoint.getSignature();//获得签名

// System.out.println("signature:" + signature);
//执行方法
System.out.println("环绕前");
Object proceed = proceedingJoinPoint.proceed();
System.out.println("环绕后");
System.out.println(proceed);

}

}

10 spring整合Mybatis

回顾mybatis:

  1. 编写实体类

  2. 编写核心配置文件

  3. 编写接口

  4. 编写mapper.xml

  5. 测试

11 .Spring声明事务

把一组业务当成一个业务来做,要么成功要么失败

事务在项目中,十分重要,涉及到数据的一致性问题,不能马虎。

确保完整性和一致性

ACID:

原子性:要么执行要么都不执行

隔离性:多个业务可以操作同一个资源防止数据损坏

持久性: 事务一旦提交,无论系统发生什么问题,结果都不会再被影响,被持久化的写到存储器中。

一致性:

Spring中事务的声明:

AOP : 声明式事务

编程式事务:需要在代码中进行事务的管理

为什么要事务?

如果没有事务,可能存在数据提交不一致。

如果我们不在Spring中去配置声明式事务,我们就需要在代码中手动设置事务。

事务在项目的开发中很重要,涉及到项目的完整性和一致性。

在spring中需要注意:在配置的过程中需要注意空格。

有空格和没有空格的区别是很大的。