~~~
<?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 https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd">
<!-- 1.注册目标对象 -->
<bean name="userService" class="com.nobb.service.UserServiceImpl" ></bean>
<!-- 2.注册通知对象 -->
<bean name="myAdvice" class="com.nobb.advice.MyAdvice" ></bean>
<!-- 3.配置织入(切面) -->
<aop:config>
<!-- 配置切点
id:为配置的切点起个名字,为了方便后续引用
expression:切点表达式,描述谁是切点
切点表达式语法:
execution:描述具体哪个类中的哪个方法需要增强
语法: execution(返回值 包名.类名.方法名(方法参数))
例子: execution(void com.kaikeba.service.UserServiceImpl.save()) 指定某一个方法为切点
execution(* com.kaikeba.service.UserServiceImpl.save()) 方法返回值任意
execution(* com.kaikeba.service.*ServiceImpl.save()) 指定包中以ServiceImpl结尾的类
execution(* com.kaikeba.service.*ServiceImpl.*()) 空参方法名任意
execution(* com.kaikeba.service.*ServiceImpl.*(..)) 参数列表任意(常用)
execution(* com.kaikeba.service.*ServiceImpl.*(Long,..)) 第一个参数是Long型,其他任意.
execution(* *..*.*ServiceImpl.*(..)) 任意包下
execution(* *..*.*.*(..)) 所有类中的所有方法都是切点(开玩笑,不常用)
-->
<aop:pointcut id="myPC" expression="execution(* com.nobb.service.*ServiceImpl.*(..))"/>
<!-- 配置切面
切面:切点+通知
ref:指定通知对象
-->
<aop:aspect ref="myAdvice" >
<!-- 前置切面:切点+前置通知 -->
<aop:before method="before" pointcut-ref="myPC"/>
<!-- 后置通知 -->
<aop:after-returning method="after" pointcut-ref="myPC"/>
<!-- 最终通知 -->
<aop:after method="end" pointcut-ref="myPC"/>
<!-- 异常通知 -->
<aop:after-throwing method="afterThrowing" pointcut-ref="myPC"/>
</aop:aspect>
</aop:config>
</beans>
~~~
- mybatis
- 基础
- maven依赖
- 主配置文件
- 实体映射表
- Mapper接口
- xxxMapper.xml
- 代码测试
- CURD
- 查询操作
- 新增操作
- 修改操作
- 删除操作
- 生命周期&作用域
- 实体类型配置别名
- 进阶查询
- 列名与属性名不对应
- 多条件sql查询
- 模糊查询
- 获取保存后的主键
- 动态sql
- where配合If
- where配合choose
- where配合foreach
- Sql片段
- 关联查询
- 表结构设计及实体类
- 多对一&一对一
- 一对多
- 多对多
- 嵌套查询(多条sql)
- 多对一&一对一
- 一对多
- 多对多
- 加载策略
- 缓存
- 一级缓存
- 二级缓存
- 配置进阶
- properties
- mapper注册
- 连接池
- 注解开发
- spring
- 基础
- maven依赖
- bean创建
- 基础配置
- 测试代码
- 简单原理
- 构造方法创建对象
- 静态工厂创建对象
- 动态工厂创建对象
- 作用域
- 初始化&销毁方法
- 单例和原型作用域
- 依赖注入
- 构造方法注入
- set方法注入
- 集合&数组属性注入
- 配置文件模块化
- 注解配置
- 配置相关
- 注解释义
- 纯注解配置
- 小结
- Spring整合junit
- 依赖管理
- 使用
- Aop
- 依赖管理
- 配置相关
- aopDemo(非环绕通知)
- 名词解释
- 环绕通知
- xml混合注解Aop开发
- 纯注解Aop
- Aop事务
- 代理相关
- 动态代理观光代码
- cglib代理观光代码
- SpringMVC
- 基础
- 依赖管理
- 配置web.xml
- spring-mvc.xml
- idea tomcat配置
- Hello Controller
- Api解析
- @Controller
- @RequestMapping
- 编码问题解决
- 获取请求头信息
- 获取Cookie的值
- json相关
- 依赖管理
- 接收json请求参数
- 以json形式返回给客户端
- restful风格
- 转发
- 重定向
- 页面传值
- Request域
- Session域
- Aop异常处理
- 拦截器
- 番外篇
- Tomcat
- Servlet
- 创建
- 线程安全问题
- 生命周期相关
- Filter
- Listener
- ssm整合
- mybatis基础篇
- mybatis依赖
- mybatis实体
- Mapper接口
- mybatis配置
- 测试代码
- spring基础篇
- 依赖
- AccountService接口
- AccountServiceImpl
- 测试代码
- springmvc
- 依赖
- web.xml
- spring-mvc.xml
- AccountController
- spring整合mybatis
- 依赖
- 配置
- spring整合springmvc
- web.xml
- SpringBoot
- maven配置
- 引入SpringBoot技术
- 入口及测试控制器
- 打包插件
- 配置相关
- 配置实践
- 配置自动适配
- 配置校验
- 配置文件制定
- SpringBoot整合Junit
- 整合mybatis
- 依赖管理
- 配置相关
- @Mapper
- 整合freemarker
- 依赖管理
- 配置相关
- 测试控制器
- 目录相关
- 验证器
- maven依赖
- 验证器定义
- 控制器接收参数
- 全局异常通知
- filter跨域解决方案
- 模板相关问题
- 上传解决方案
- redis相关
- maven依赖管理
- 配置相关
- cache简单封装
- json处理
- SpringCloud
- 简介
- 版本号
- eureka
- 简介
- 组件
- eureka服务依赖
- eureka配置
- 项目启动
- 父类依赖库
- eureka_cli
- eureka客户端依赖
- 配置项
- 启动项
- eureka集群原理
- ribbon
- maven
- 配置
- 微服务实战
- 项目架构
- 基类依赖
- eureka注册中心
- 1依赖相关
- 2.配置相关
- 3.启动项
- 业务service
- supergo-manager-service
- 依赖
- 配置
- 数据源监控
- 启动项
- feign调用
- supergo-manager-feign
- 依赖
- 调用代码
- 接口层
- supergo-manager-web
- 依赖
- 配置项
- 启动项
- 通用mapper
- 逆向工程
- 数据库连接配置
- 逆向工程配置
- 操作
- base-service
- 简介
- 跨域
- 网关层
- zuul
- 依赖项
- 配置
- 启动项