文章目录
Spring
Spring5 框架概述
- 1、Spring 是轻量级的开源的 JavaEE 框架
- 2、Spring 可以解决企业应用开发的复杂性
- 3、Spring 有两个核心部分:IOC 和 Aop
(1)IOC:控制反转,把创建对象过程交给 Spring 进行管理
(2)Aop:面向切面,不修改源代码进行功能增强 - 4、Spring 特点
(1)方便解耦,简化开发
(2)Aop 编程支持
(3)方便程序测试
(4)方便和其他框架进行整合
(5)方便进行事务操作
(6)降低 API 开发难度
IOC
底层原理
xml 解析、工厂模式、反射
1、IOC 思想基于 IOC 容器完成,IOC 容器底层就是对象工厂
2、Spring 提供 IOC 容器实现两种方式:(两个接口)
(1)BeanFactory:IOC 容器基本实现,是 Spring 内部的使用接口,不提供开发人员进行使用,
加载配置文件时候不会创建对象,在获取对象(使用)才去创建对象
(2)ApplicationContext:BeanFactory 接口的子接口,提供更多更强大的功能,一般由开发人员进行使用
加载配置文件时候就会把在配置文件对象进行创建
Bean 管理(基于 xml 方式)
(1)在 spring 配置文件中,使用 bean 标签,标签里面添加对应属性,就可以实现对象创建
(2)在 bean 标签有很多属性,介绍常用的属性
- id 属性:唯一标识
- class 属性:类全路径(包类路径)
(3)创建对象时候,默认也是执行无参数构造方法完成对象创建
<bean id="user" class="com.whl.spring5.User"></bean>
Bean 管理(FactoryBean)
在配置文件定义 bean 类型可以和返回类型不一样
- 第一步 创建类,让这个类作为工厂 bean,实现接口 FactoryBean
- 第二步 实现接口里面的方法,在实现的方法中定义返回的 bean 类型
Bean 管理(bean 作用域)
如何设置单实例还是多实例?(默认单例)
- (1)在 spring 配置文件 bean 标签里面有属性(scope)用于设置单实例还是多实例
- (2)scope 属性值
第一个值 默认值,singleton,表示是单实例对象
第二个值 prototype,表示是多实例对象
Bean 管理(bean 生命周期)
- (1)通过构造器创建 bean 实例(无参数构造)
- (2)为 bean 的属性设置值和对其他 bean 引用(调用 set 方法)
- (3)调用 bean 的初始化的方法(需要进行配置初始化的方法)
- (4)bean 可以使用了(对象获取到了)
- (5)当容器关闭时候,调用 bean 的销毁的方法(需要进行配置销毁的方法)
bean 的后置处理器,bean 生命周期有七步
- (1)通过构造器创建 bean 实例(无参数构造)
- (2)为 bean 的属性设置值和对其他 bean 引用(调用 set 方法)
- (3)把 bean 实例传递 bean 后置处理器的方法 postProcessBeforeInitialization
- (4)调用 bean 的初始化的方法(需要进行配置初始化的方法)
- (5)把 bean 实例传递 bean 后置处理器的方法 postProcessAfterInitialization
- (6)bean 可以使用了(对象获取到了)
- (7)当容器关闭时候,调用 bean 的销毁的方法(需要进行配置销毁的方法)
Bean 管理(基于注解方式)
(1)@Component
(2)@Service
(3)@Controller
(4)@Repository
基于注解方式实现对象创建
- 第一步 引入依赖
- 第二步 开启组件扫描
<context:component-scan base-package="com.whl"></context:component-scan>
- 第三步 创建类,在类上面添加创建对象注解
基于注解方式实现属性注入
@Autowired:根据属性类型进行自动装配
@Qualifier:根据名称进行注入
这个@Qualifier 注解的使用,和上面@Autowired 一起使用
@Resource:可以根据类型注入,可以根据名称注入
@Value:注入普通类型属性
完全注解开发
(1)创建配置类,替代 xml 配置文件
@Configuration //作为配置类,替代 xml 配置文件
@ComponentScan(basePackages = {"com.whl"})
public class SpringConfig {
}
(2)编写测试类
@Test
public void testService2() {
//加载配置类
ApplicationContext context
= new AnnotationConfigApplicationContext(SpringConfig.class);
UserService userService = context.getBean("userService",
UserService.class);
System.out.println(userService);
userService.add();
}
AOP
(1)面向切面编程(方面),利用 AOP 可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
(2)通俗描述:不通过修改源代码方式,在主干功能里面添加新功能
底层原理
底层使用动态代理
-
第一种 有接口情况,使用 JDK 动态代理
创建接口实现类代理对象,增强类的方法
-
第二种 没有接口情况,使用 CGLIB 动态代理
创建子类的代理对象,增强类的方法
AOP(术语)
连接点
类里面哪些方法可以被增强,这些方法称为连接点
切入点
实际被真正增强的方法。称为切入点
通知
实际增强的逻辑部分称为通知
切面
把通知应用到切入点过程
在增强类的里面,在作为通知方法上面添加通知类型注解,使用切入点表达式配置
//增强的类
@Component
@Aspect //生成代理对象
public class UserProxy {
//前置通知
//@Before 注解表示作为前置通知
@Before(value = "execution(* com.atguigu.spring5.aopanno.User.add(..))")
public void before() {
System.out.println("before.........");
}
//后置通知(返回通知)
@AfterReturning(value = "execution(*
com.atguigu.spring5.aopanno.User.add(..))")
public void afterReturning() {
System.out.println("afterReturning.........");
}
//最终通知
@After(value = "execution(* com.atguigu.spring5.aopanno.User.add(..))")
public void after() {
System.out.println("after.........");
}
//异常通知
@AfterThrowing(value = "execution(*
com.atguigu.spring5.aopanno.User.add(..))")
public void afterThrowing() {
System.out.println("afterThrowing.........");
}
//环绕通知
@Around(value = "execution(* com.atguigu.spring5.aopanno.User.add(..))")
public void around(ProceedingJoinPoint proceedingJoinPoint) throws
Throwable {
System.out.println("环绕之前.........");
//被增强的方法执行
proceedingJoinPoint.proceed();
System.out.println("环绕之后.........");
}
}
相同的切入点抽取
//相同切入点抽取
@Pointcut(value = "execution(* com.atguigu.spring5.aopanno.User.add(..))")
public void pointdemo() {
}
//前置通知
//@Before 注解表示作为前置通知
@Before(value = "pointdemo()")
public void before() {
System.out.println("before.........");
}
JdbcTemplate(略)
事务操作(完全注解声明式事务管理)
(1)事务是数据库操作最基本单元,逻辑上一组操作,要么都成功,如果有一个失败所有操作都失败
(2)典型场景:银行转账
- lucy 转账 100 元 给 mary
- lucy 少 100,mary 多 100
(1)原子性
(2)一致性
(3)隔离性
(4)持久性
- 1、创建配置类,使用配置类替代 xml 配置文件
@Configuration //配置类
@ComponentScan(basePackages = "com.atguigu") //组件扫描
@EnableTransactionManagement //开启事务
public class TxConfig {
//创建数据库连接池
@Bean
public DruidDataSource getDruidDataSource() {
DruidDataSource dataSource = new DruidDataSource();
dataSource.setDriverClassName("com.mysql.jdbc.Driver");
dataSource.setUrl("jdbc:mysql:///user_db");
dataSource.setUsername("root");
dataSource.setPassword("root");
return dataSource;
}
//创建 JdbcTemplate 对象
@Bean
public JdbcTemplate getJdbcTemplate(DataSource dataSource) {
//到 ioc 容器中根据类型找到 dataSource
JdbcTemplate jdbcTemplate = new JdbcTemplate();
//注入 dataSource
jdbcTemplate.setDataSource(dataSource);
return jdbcTemplate;
}
//创建事务管理器
@Bean
public DataSourceTransactionManager
getDataSourceTransactionManager(DataSource dataSource) {
DataSourceTransactionManager transactionManager = new
DataSourceTransactionManager();
transactionManager.setDataSource(dataSource);
return transactionManager;
}
}
- 2、在 service 类上面(或者 service 类里面方法上面)添加事务注解
(1)@Transactional,这个注解添加到类上面,也可以添加方法上面
(2)如果把这个注解添加类上面,这个类里面所有的方法都添加事务
(3)如果把这个注解添加方法上面,为这个方法添加事务