**1. AspectJ框架**
AspectJ 是一个独立的 AOP 框架,Spring 整合了该框架来实现注解式的 AOP 编程。
```
====常用的 AOP 注解====
@Order(int value) 决定切面对象其作用的顺序,value越小越先被执行
@Aspect 将切面对象注入IoC容器中
@Pointcut 定义切入点
@Before 前置增强
@After 最终增强
@AfterReturning 后置增强
@AfterThrowing 异常增强
@Around 环绕增强
```
<br/>
**2. AOP注解使用步骤**
(1)在`resources/ApplicationContext.xml`中开启AspectJ代理和包扫描。
```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" 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
http://www.springframework.org/schema/aop/spring-aop.xsd">
<!--开启包扫描-->
<context:component-scan base-package="com.learn.spring06.*" />
<!-- 开启AspectJ代理 -->
<aop:aspectj-autoproxy />
</beans>
```
(2)目标对象。
```java
@Service
public class StudentServiceImpl implements StudentService {
@Override
public void add(int x, int y) {
System.out.println("------目标函数的输出------\n" + (x + y));
}
}
```
(3) 创建切面对象。
```java
@Component
@Aspect
@Order(1) // 该注解可选
public class AspectLogger {
private static final Logger logger = Logger.getLogger(AspectLogger.class);
@Before("execution(* com.learn.spring.annotation.service..*.*(..))")
public void printLogger(JoinPoint jPoint) {
logger.info("\n------增强函数的输出------"
+ "\n增强方式:前置增强"
+ "\n目标对象:" + jPoint.getTarget()
+ "\n目标函数:" + jPoint.getSignature().getName()
+ "\n目标函数的参数:" + Arrays.toString(jPoint.getArgs()));
}
}
```
切入点还可以如下编写:
```java
// 写法1
@Before("execution(* com.learn.spring.annotation.service.impl.StudentServiceImpl.add(..))")
public void printLogger(JoinPoint jPoint) {...}
// 写法2:先封装切入点,再应用到增强函数中
@Pointcut(value = "execution(* com.learn.spring.annotation.service.impl.StudentServiceImpl.add(..))")
public void addStudentPointcut() {/* 封装的切入点*/}
@Before("addStudentPointcut()")
public void printLogger(JoinPoint jPoint) {...}
// 写法3:可以同时配置多个切入点,使用&&或||来隔开
@Pointcut("(execution(public void add(int, int))) && (execution(public void delete())) ")
public void addStudentPointcut() { /*封装的切入点 */}
@Before("addStudentPointcut()")
public void printLogger(JoinPoint jPoint) {...}
```
(4)测试结果。
```
------增强函数的输出------
增强方式:前置增强
目标对象:com.learn.spring06.service.impl.StudentServiceImpl@1eb5174b
目标函数:add
目标函数的参数:[10, 20]
------目标函数的输出------
30
```
- Mybatis
- mybatis是什么
- mybatis优缺点
- 环境搭建
- 使用步骤
- 传参方式
- 无需传参
- 一个参数
- 多个参数
- 增/删/改
- 查询
- 单表查询
- 一对一查询
- 一对多查询
- 动态SQL
- 注解操作
- Spring
- Spring什么
- Spring优点
- Spring组成
- 第一个Spring程序
- 两大核心技术
- IoC控制反转
- IoC思想
- IoC容器使用步骤
- 属性注入
- IoC注入方式
- 模拟IoC实现
- AOP
- AOP概念
- AOP原理
- AOP关键术语
- AOP编程过程
- 切入点规则
- 5种增强方式
- Spring注解开发
- 注解开发的优势
- Bean注解开发
- AOP注解开发
- 完全注解开发
- 模拟Spring注解开发
- 自动装配
- 配置文件拆分
- SpringBean
- Bean常用属性
- Bean的作用域
- Bean的生命周期
- Spring整合MyBatis
- 整合步骤
- SqlSessionTemplate
- 业务层添加事务
- 事务的作用
- 配置文件事务
- 注解事务
- 事务参数
- SpringMVC
- SpringMVC是什么
- 环境搭建
- 请求流程
- 核心组件
- 前后端交互
- 简单交互演示
- 常用注解
- 后端数据传递至前端
- ServletAPI
- 访问静态资源
- 异常处理
- HandlerExceptionResolver
- 局部异常
- 全局异常
- 转发与重定向
- 转发演示
- 重定向演示
- 转发与重定向的区别
- 获取表单数据
- 表单标签
- REST风格的URL
- 异步处理
- 异步请求
- JSON数据处理
- 中文乱码处理
- 日期处理
- 上传文件
- 拦截器
- 视图解析器
- 视图类型
- 多视图解析器
- 自定义pdf视图
- JSR303数据验证
- JSR303是什么
- 常用约束
- 使用步骤
- SpringMVC整合Mybatis
- 整合步骤
- Mybatis分页插件
- SpringBoot
- SpringBoot是什么
- 环境搭建
- SpringBoot启动分析
- SpringBoot启动类
- 启动过程
- SpringBoot配置文件
- 配置文件类型
- 更改配置文件
- 读取配置文件
- 占位符
- 配置优先级
- 自定义IoC容器
- 定义方式
- 引入Spring配置文件
- @Configuration
- SpringBoot自动配置
- 自动配置原理
- 条件注解
- 自动配置报告
- 自定义自动配置
- 关闭自动配置
- 接管自动配置
- 多环境配置
- CommandLineRunner
- SpringBoot与Web开发
- 引入模板引擎
- Thymeleaf模板
- Freemarker模板
- 静态资源访问
- webjars
- 静态资源位置
- ico图标
- 指定首页
- 更换Web服务器
- 国际化
- 拦截器
- 错误处理机制
- 错误处理机制原理
- 定制错误页面
- 定制错误数据
- 上传文件
- 注册servlet三大组件
- 注册Servlet
- 注册过滤器
- 注册监听器
- 外部Tomcat与jsp模板
- 前后端交互
- 传递json字符串
- 传递js对象
- 传递表单
- 下载功能
- Swagger2文档
- SpringBoot整合JDBC
- 整合步骤
- 核心API
- JdbcTemplate
- 增删改
- 查询
- NamedParameterJdbcTemplate
- 增删改
- 查询
- SpringBoot整合Mybatis
- 整合步骤
- 切换为Druid数据源
- 添加事务
- Mybatis分页插件
- 场景启动器
- 场景启动器是什么
- 自定义场景启动器
- SpringBoot与日志
- 日志框架
- slf4j日志
- slf4j日志实现
- 统一切换为slf4j
- 日志配置
- 日志文件
- 切换日志框架
- 切换日志场景启动器
- SpringBoot与缓存
- JSR107缓存技术
- Spring缓存抽象
- 缓存注解
- SpEL表达式
- 使用缓存
- 自定义key生成器
- 缓存工作原理与流程
- SpringBoot整合Redis
- 整合步骤
- 初步使用
- 序列化机制
- 缓存管理器
- SpringBoot与任务
- 异步任务
- 实现异步任务
- 注意事项与原理
- 自定义线程池
- 定时任务
- cron表达式
- 创建定时任务
- @Scheduled参数
- 动态时间
- 邮件任务
- Quartz定时任务
- Quartz是什么
- 创建定时任务
- 触发器与任务
- 任务的CURD
- 两种触发器
- 并发问题
- 持久化
- 任务持久化
- Quartz集群
- misfire策略
- 打包插件
- appassembler-maven-plugin
- appassembler与assembly配合