此文章是我们跟着狂神说的视频,边学边做的笔记
1、Spring
1.1、简介
-
Spring:春天-----------------给软件行业带来了春天!!!
-
2002,首次推出了Spring框架的雏形:interface21框架!
-
2004年3月24日,Spring框架以interface21框架为基础,经过重新设计,并不断丰富其内涵,发布了1.0正式版本。
-
Rod Johnson ,Spring Framework创始人,著名作者。他是悉尼大学的博士,然而他的专业是音乐学。
-
Spring理念:使现有的技术更加容易使用,本身是一个大杂烩,整合了现有的技术框架
-
SSH:Struct2+Spring+Hibernate
-
SSM:SpringMVC+Spring+Mybatis!
官网:https://docs.spring.io/spring-framework/docs/current/reference/html/overview.html#overview
官方下载地址:https://repo.spring.io/release/org/springframework/spring
GitHub:https://github.com/spring-projects/spring-framework
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.2.0.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.2.0.RELEASE</version>
</dependency>
1.2、优点
- Spring是一个开源的免费的框架(容器)
- Spring是一个轻量级的、非入侵式的框架
- 控制反转(IOC),面向切面编程(AOP)
- 支持事务的处理,对框架整合的支持!
总结一句话:Spirng就是轻量级的控制反转(IOC)和面向切面编程的框架(AOP)!
1.3、组成
1.4、拓展
Spring官网有这样一个介绍:现代化的Java开发!说白了就是基于Spring开发
- Spring Boot
一个快速开发的脚手架
基于SpringBoot可以快速 的开发单个微服务。
约定大于配置!
- Spring Cloud
Spring Cloud是基于Spring Boot实现的
现在大多数公司都在使用Spring Boot 进行快速开发,学习Spring Boot的前提,需要完全掌握Spring及SpringMVC !承上启下的作用
弊端:发展了太久之后,违背了原来的理念!配置十分繁琐,人称:"配置地狱!"
2、IOC理论推导
1.UserDao接口
2.UserDaoImpl实现类
3.UserService业务接口
4.UserServiceImpl业务实现层
在我们之前的业务中,用户的需求可能会影响我们原 来的代码,我们需要根据用户的需求去修改原来的代码。如果程序代码量十分大,
修改一次的成本代价十分昂贵。
我们使用一个Set接口实现,已经发生了革命性的变化!
private UserDao userDao
//利用set进行动态实现值的注入!
public void setUserDao(UserDao userDao){
this.userDao =userDao;
}
- 之前,程序是主动创建对象!控制权在程序员手上!
- 使用set注入后,程序不再具有主动性,而是变成了被动的接收对象
这种思想,从本质上解决了问题,我们程序员不用再去管理对象的创建了!系统的耦合性大大降低,可以更加专注的在业务的实现上!
这是IOC的原型。(IOC,前期由程序员创建,变为后面根据客户操作进行创建)
- IOC本质
IOC是Spring框架的核心内容,使用多种方式完美的实现了IOC,可以使用XML配置,也可以使用注解,新版本的Spring也可以零配置实现IOC。
Spring容器在初始化时,先读取配置文件,根据配置文件或元数据创建与组织对象存入容器中,程序使用时,再从IOC容器中取出需要的对象。
采用XML方式配置Bean的时候,Bean的定义信息是和实现分离的,而采用注解的方式可以把两者和为一体,Bean的定义信息直接以注解的形式在实现类中,从而达到零配置的目的。
控制反转是一种通过描述(XML或注解)并通过第三方去生产或获取特定对象的方式。在Spring中实现控制反转的是IOC容器,其实现方法是依赖注入(Dependency Injection,DI)
3、HelloSpring
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);
}
}
配置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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd">
<!--使用Spring来创建对象,在Spring中这些都称为Bean
bean = 对象 new Hello();
正常情况: 类型 变量名 = new 类型(); Hello hello = new Hello();
在bean中: id = 变量名; class = new 的对象;
property:相当于给对象中的属性设置一个值
ref : 引用Spring容器中创建好的对象
value:具体的值
-->
<bean id="hello" class="com.kuang.pojo.Hello">
<property name="name" value="Spring"></property>
</bean>
</beans>
@Test
public void test(){
//获取ApplicationContext,拿到Spring容器
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
//我们的对象现在都在Spring中管理了,我们要使用,直接去里面取出来就可以了
//getBean:参数是spring配置文件中的bean的id
Hello hello = (Hello) context.getBean("hello");
System.out.println(hello.toString());
hello.show();
}
4、IOC创建对象的方式
- 使用无参构造创建默认对象,默认!!!
- 假设我们要用有参构造创建对象
- 下标赋值(构造器有多个参数的时候,下标表示参数的顺序)
<!--第一种,下表赋值-->
<bean id="user" class="com.kuang.pojo.User">
<constructor-arg index="0" value="凌落"></constructor-arg>
</bean>
2. 类型
<!--第二种方式:通过类型创建不建议使用,万一参数类型一致不好自动匹配-->
<bean id="user" class="com.kuang.pojo.User">
<!--基本类型可以直接写,引用类型需要写全类型-->
<constructor-arg type="java.lang.String" value="飞雨"/>
</bean>
3. 参数名
<!--第三种:直接通过参数名来设置-->
<bean id="user" class="com.kuang.pojo.User">
<constructor-arg name="name" value="飞雨凌落"/>
</bean>
</beans>
总结:在配置文件加载的时候,容器中管理的对象就已经初始化了!
5、Spring配置
5.1、别名
如果添加了别名,我们也可以通过别名获取到这个对象。
<bean id="user" class="com.kuang.pojo.User">
<constructor-arg name="name" value="飞雨凌落"/>
</bean>
<alias name="user" alias="a"/>
注意:别名是区分大小写的,它的存在只是相当于多了一个名字,原先的名字还能用。
5.2、Bean的配置
- bean中参数:
id :bean的唯一标识符,也就相当于我们学的对象名
class:bean对象对应的全限定名:包名+类型
name:也是别名,而且name更高级,可以同时取多个别名,多个别名,可以通过逗号分隔,也可以通过空格分隔分号等等、、
<bean id="user" class="com.kuang.pojo.User" name="a,b">
<constructor-arg name="name" value="飞雨凌落"/>
</bean>
5.4、官网SpringXML的配置元数据的基本结构
<?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
https://www.springframework.org/schema/beans/spring-beans.xsd">
</beans>
5.3、import
这个import,一般用于团队开发使用,它可以将多个配置文件,导入合并为一个。
6、依赖注入
6.1、构造器注入
实体类就随便创建了一个参数为String类型的name
<bean id="user" class="com.kuang.pojo.User" name="a,b">
<constructor-arg name="name" value="飞雨凌落"/>
</bean>
<bean id="now" class="java.util.Date"></bean>
6.2、Set方式注入【重点】
- 依赖注入:本质Set注入!
- 依赖:bean对象的创建依赖于容器
- 注入:bean对象中的所有属性,由容器来注入!
使用Spring来创建对象,在Spring中这些都称为Bean
bean = 对象 new Hello();
正常情况: 类型 变量名 = new 类型(); Hello hello = new Hello();
在bean中: id = 变量名; class = new 的对象;
property:相当于给对象中的属性设置一个值
ref : 引用Spring容器中创建好的对象
value:具体的值
【环境搭建】
- 复杂类型
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> hobbys;
private Map<String,String> card;
private Set<String> games;
private String wife;
private Properties info;
//省略了Setter和Getter方法、toString方法
- beans.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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="address" class="com.kuang.pojo.Address">
</bean>
<bean id="student" class="com.kuang.pojo.Student">
<!--第一种:普通值注入,直接使用value-->
<property name="name" value="飞雨凌落"/>
<!--第二种:bean注入,使用ref-->
<property name="address" ref="address"/>
<!--数组注入->
<property name="books">
<array>
<value>西游记</value>
<value>三国</value>
<value>红楼梦</value>
</array>
</property>
<!--List-->
<property name="hobbys">
<list>
<value>敲代码</value>
<value>敲代码2</value>
<value>敲代码3</value>
</list>
</property>
<!--Map:特殊一点-->
<property name="card">
<map>
<entry key="身份证" value="555"/>
<entry key="学生证" value="666"/>
</map>
</property>
<!--Set-->
<property name="games">
<set>
<value>DNF</value>
<value>CF</value>
<value>LOL</value>
</set>
</property>
<!--null-->
<property name="wife">
<null/>
</property>
<!--为空-->
<!--<property name="" value=""/>-->
<!--Property-->
<property name="info">
<props>
<!-- <prop key="学号">001</prop>
<prop key="性别">男</prop>
<prop key="姓名">凌落</prop>-->
<prop key="driver">001</prop>
<prop key="url">男</prop>
<prop key="username">root</prop>
<prop key="password">123</prop>
</props>
</property>
</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);
}
}
6.3、拓展方式注入
我们可以使用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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<!--p命名空间注入:可以直接注入属性的值:等价properties-->
<bean id="user" class="com.kuang.pojo.User" p:name="飞" p:age="22"></bean>
<!--c命名空间注入:可以通过构造器注入:construct-args-->
<bean id="user2" class="com.kuang.pojo.User" c:name="飞雨" c:age="22"></bean>
</beans>
- 测试
@Test
public void test(){
ApplicationContext context = new ClassPathXmlApplicationContext("userbean.xml");
// User user = (User) context.getBean("user");
User user = context.getBean("user2", User.class);
System.out.println(user);
}
注意点:p命名空间和c命名空间不能直接使用,需要导入xml约束!
xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"
6.4、bean的作用域
- 单例模式(Spring默认机制)
<bean id="user2" class="com.kuang.pojo.User" c:name="飞雨凌落" c:age="22" scope="singleton"/>
- 原型模式:每次从容器中get的时候,都会产生一个新对象
在这里插入代码片
- 其余的request、session、application这几个只能在web开发中使用到
7、Bean的自动装配
- 自动装配是Spring满足bean依赖的一种方式!
- Spring会在上下文中自动寻找,并自动给bean装配属性!
在Spring中有三种自动装配的方式:
- 在xml中显示的配置
- 在java中显示的配置
- 隐式的自动装配bean
7.1、测试
- 环境搭建
- 实体类,一个人,两只宠物
7.2、byName自动装配
- byName:会在容器上下文中查找,和自己对象set方法后面的值对应的 beanid
- 要区分大小写,即set的形参名
<!--
byName:会在容器上下文中查找,和自己对象set方法后面的值对应的 beanid-->
<bean id="people" class="com.kuang.pojo.Perple" autowire="byName">
<property name="name" value="飞雨凌落"/>
</bean>
7.3、byType自动装配
<bean id="cat111" class="com.kuang.pojo.Cat"/>
<bean class="com.kuang.pojo.Dog"/>
<!--
byName:会在容器上下文中查找,和自己对象set方法后面的值对应的 beanid
byType:会在容器上下文中查找,和自己对象属性类型相同的 bean
-->
<bean id="people" class="com.kuang.pojo.Perple" autowire="byType">
<property name="name" value="飞雨凌落"/>
</bean>
小结
- byName的时候,需要保证所有的bean的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致!
- byType的时候,要保证所有bean的class唯一,并且这个bean需要和自动注入的属性的类型一致。
7.4、注解实现自动装配
JDK 1.5支持的注解,Spring 2.5就支持注解了!
The introduction of annotation-based configuration raised the question of whether this approach is “better” than XML.
要使用注解须知:
- 导入约束:context约束
- 配置注解的支持 context:annotation-config/
<?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/>
</beans>
@Autowired
- 直接在属性上使用即可!也可以在set方式上使用
- 使用了这个注解,我们可以不编写Set方法,前期是你这个自动装配的属性在IOC(Spring)容器中存在,且符合名字byTypy!
科普:
@Nullable 字段标记了这个注解,
如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解【@Autowired】完成的时候,我们可以使用@Qualifier(value=“xxx”)去配置@Autowried的使用,指定唯一的bean对象注入
@Autowired
@Qualifier(value ="dog2")
private Dog dog;
@Autowired
private Cat cat;
小结:
@Resource和@Autowired的区别:
-
都是用来自动装配的,都可以放在属性字段上
-
@Autowired 通过byType的方式实现
-
@Resource 默认通过byName的方法实现,如果找不到名字,则通过byType实现!如果两个都找不到的情况下,就报错
-
执行默认顺序不同:@Autowired 通过byType,@Resource 通过byName
8、使用注解开发
在Spring4之后,要使用注解开发,必须要保证aop的包导入
使用注解需要导入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"
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/context
https://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<!--开启注解的支持-->
<context:annotation-config/>
</beans>
- bean
- 属性如何注入,可以在成员变量上用@Value注解,也可以在Set方法上使用。如果两者同时使用,优先Set方法上的@Value
@Component
public class User {
//相当于<property name ="name" value="凌落"/>
@Value("凌落.")
public String name ;
// @Value("凌落..")
public void setName(String name) {
this.name = name;
}
}
- 衍生的注解
@Component有几个衍生的注解,我们在web开发中,会按照mvc三层架构分层!
- dao【@Respository】
- service【@Service】
- controller【@Controller】
- 这四个注解功能都是一样的,都是代表将某个类注册到Spring容器中,装配Bean
- 自动装配
@Autowired:自动装配通过类型,名字。
如果Autowired不能唯一自动装配上属性,则需要通过@Qualifier(value="xxx")
@Resource:自动装配通过名字,类型。如果不能唯一装配上属性,则可以@Resource(value="xxx")
@Nullable:字段标记了这个注解,说明这个字段可以为null
-
作用域
@Scope(“prototype”)放在类的上面
-
小结
- xml与注解:
- xml更加万能,适用于任何场合!维护简单方便
- 注解,不是自己类使用不了,维护相对复杂! - xml与注解最佳实践
- xml用来管理bean
- 注解只完成属性的注入;
- 我们在使用的过程中,只需要注意一个问题:必须让注解生效,就需要开启注解的支持
<!--开启注解的支持-->
<context:annotation-config/>
<!--指定要扫描的包,这个包下的注解就会生效-->
<context:component-scan base-package="com.kuang.pojo"/>
9、使用Java的方式配置Spring
我们现在要完全不使用,Spring的xml配置了,全权交给Java来做!
JavaConfig是Spring的一个子项目,在Spring4之后,它成为了一个核心功能
实体类
//这个注解的意思,就是说明这个类被Spring接管了,注册到容器中
@Component
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 + '\'' +
'}';
}
}
配置文件
//使用这个也会Spring容器托管,注册到容器中,因为它本来就是和@Component
//@Configuration代表这是一个配置类,就和我们之前看到beans.xml
@Configuration
@ComponentScan("com.kuang.pojo")
public class KuangConfig {
/**注册一个bean,就相当于我们之前写的一个bean标签
* 这个方法的名字相当于bean标签中的id属性
* 这个方法的返回值,就相当于bean标签中的class属性*/
@Bean
public User getUser(){
return new User();//就是返回要注入到bean的对象
}
}
测试类
@Configuration
@ComponentScan("com.kuang.pojo")
public class KuangConfig {
/**注册一个bean,就相当于我们之前写的一个bean标签
* 这个方法的名字相当于bean标签中的id属性
* 这个方法的返回值,就相当于bean标签中的class属性*/
@Bean
public User getUser(){
return new User();//就是返回要注入到bean的对象
}
}
这种纯Java的配置方式,在SpringBoot中随处可见。
10、代理模式
为什么要学习代理模式?
因为这就是面向切面编程(AOP)的底层实现!
代理模式,可以理解为只在乎结果,不在乎具体是怎么实现的
代理模式的分类:
- 动态代理
- 静态代理
10.1、静态代理
角色分析:
- 抽象角色:一般会使用接口或者抽象类来解决
- 真实角色: 被代理的角色
- 代理角色:代理真实角色,代理真实角色后,我们一般会做一些附属操作。
- 客户:访问代理对象的人
代码步骤:
- 接口
/**租房*/
public interface Rent {
public void rent();
}
- 真实角色
/**房东*/
public class Landlord implements Rent {
public void rent() {
System.out.println("房东要出租房子");
}
}
- 代理角色
public class Proxy implements Rent {
//组合优于继承原则
private Landlord landlord;
public Proxy(){
}
public Proxy(Landlord landlord) {
this.landlord = landlord;
}
public void rent() {
System.out.print("中介说:");
landlord.rent();
seeHouse();
price();
contract();
}
/**中介带你看房*/
public void seeHouse(){
System.out.println("中介带你去看房");
}
/**中介和你签合同*/
public void contract(){
System.out.println("中介和你签合同");
}
/**中介收费*/
public void price(){
System.out.println("中介要收5%手续费");
}
}
- 客户端
public class Client {
public static void main(String[] args) {
//房东要出租房子
Landlord landlord = new Landlord();
//中介帮房东出租房子,但是代理角色一般会有一些附属操作
Proxy proxy = new Proxy(landlord);
//你不用面对房东,直接找中介租房即可
proxy.rent();
}
}
代理模式的好处:
- 可以使真实角色的操作更加纯粹!不用去关注一些公共业务
- 公共业务就交给了代理角色!实现了业务的分工!
- 公共业务发生扩展的时候,方便集中管理!
缺点:- 一个真实角色就会产生一个代理角色,代码量翻倍-开发效率会变低~。
10.2、加深理解
代码:
- 接口
public interface UserService {
void add();
void delete();
void update();
void query();
}
- 真实对象
/**真实对象*/
public class UserServiceImpl implements UserService {
public void add() {
System.out.println("增加了一个用户");
}
public void delete() {
System.out.println("删除了一个用户");
}
public void update() {
System.out.println("修改了一个用户");
}
public void query() {
System.out.println("查询了一个用户");
}
/**
* 1.改动原有的业务代码,在公司中是大忌!*/
}
- 代理
public class UserServiceProxy implements UserService{
private UserServiceImpl userService;
public UserServiceProxy(){}
public void setUserService(UserServiceImpl userService) {
this.userService = userService;
}
public void add() {
log("add");
userService.add();
}
public void delete() {
log("delete");
userService.delete();
}
public void update() {
userService.update();
}
public void query() {
userService.query();
}
//日志方法
public void log(String msg){
System.out.println("使用了"+msg+"方法");
}
}
- 客户
public class Client {
public static void main(String[] args) {
UserServiceImpl userService = new UserServiceImpl();
UserServiceProxy userServiceProxy = new UserServiceProxy();
userServiceProxy.setUserService(userService);
userServiceProxy.add();
}
}
聊聊AOP
10.3、动态代理
- 动态代理和静态代理的角色一样。
- 动态代理的代理类是动态生成的,不是我们直接写好的。
- 动态代理分为两大类:基于接口的动态代理,基于类的静态代理
- 基于接口—JDK动态代理【我们在这里使用】
- 基于类 :cglib
- java字节码实现:javasist
需要了解两个类:Proxy:代理 ;InvocationHandler:调用处理程序
动态代理的好处:
- 可以使真实角色的操作更加纯粹!不用去关注一些公共业务
- 公共业务就交给了代理角色!实现了业务的分工!
- 公共业务发生扩展的时候,方便集中管理!
- 一个动态代理类代理的是一个接口,一般就是对应的一类业务
- 一个动态代理类可以代理多个类,只要是实现了同一个接口即可
11、AOP
1、什么是AOP
AOP(Aspect Oriented programming)意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使业务逻辑个部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
2、AOP在Spring中的作用
提供声明式事务;允许用户自定义切面
- 横切关注点:跨越应用程序多个模块的方法或功能。即是:与我们业务逻辑无关的,但是我们需要关注的部分,就是横切关注点。如日志,安全,缓存,事务等等、、
- 切面(ASPECT) :横切关注点,被模块化的特殊对象。即,它是一个类
3、使用Spring实现AOP
使用AOP织入,需要导入一个依赖包
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9. 4</version>
</dependency>
方式一:使用Spring的API接口【主要是SpringAPI的接口实现】
<?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.kuang.service.UserServiceImpl"/>
<bean id="log" class="com.kuang.log.Log"/>
<bean id="afterLog" class="com.kuang.log.AfterLog"/>
<!--方式一:使用原生的API接口-->
<!--配置aop:需要导入aop的约束-->
<aop:config>
<!--切入点:expression:表达式,execution(要执行的位置!* * * * *)-->
<aop:pointcut id="pointcut" expression="execution(* com.kuang.service.UserServiceImpl.*(..))"/>
<!--执行环绕增加-->
<aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
</aop:config>
</beans>
测试类
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext");
//动态代理的是接口,而不是实现类
UserService service = context.getBean("userService", UserService.class);
service.add();
}
方式二:自定义来实现AOP【主要是切面定义】
方式三:注解实现AOP
12、整合Mybatis
步骤:
- 导入相关jar包
- junit
- mybatis
- mysql数据库
- spring相关的
- aop织入
- mybatis-spring【new 】
- 编写配置文件
- 测试
1、回忆mybatis
- 编写实体类
- 编写核心配置文件
- 编写接口
- 编写接口对应的mapper.xml文件
- 测试
2、Mybatis-Spring
13、声明式事务
1、回顾事务
- 把一组业务,当成一个业务来做要么全部成功,要么全部失败
- 事务在项目开发中,十分重要,设计到数据的一致性问题,不能马虎!
- 确保完整性和一致性。
事务的ACID原则
- 原子性
- 一致性
- 隔离性
- 多个业务可能操作操作同一个资源,防止数据损坏 - 持久性
- 事务一旦提交,无论系统出现什么问题,结果都不会再被影响,被持久化的写到存储器中!
2、Spring中的事务管理
- 声明式事务:
- 编程式事务:
**问题描述:**为什么需要事务?
- 如果不配置事务,可能存在数据提交不一致的情况
- 如果我们,不再Spring中去配置声明式事务,我们就需要在代码中去手动配置事务!
- 事务在项目的开发中十分重要,涉及到数据的一致性和完整性问题!!