Spring学习_day02_AOP,AspectJ,JdbcTemplate
本文为博主辛苦总结,希望自己以后返回来看的时候理解更深刻,也希望可以起到帮助初学者的作用.
转载请注明 出自 : luogg的博客园 谢谢配合!
Spring_day02
一.AOP面向切面编程
1.1 什么是AOP
AOP就是面向切面编程,通过预编译的方式和运行期动态代理实现程序功能的统一维护的技术.
主要的功能是 : 日志记录,性能统计,安全控制,事务处理,异常处理等.
1.2 AOP实现方式
一. 预编译
- AspectJ
二.运行期动态代理
- JDK动态代理
- CGLIB动态代理
1.3 Spring中的切面类型
- 1.Advisor : spring中传统切面,
Advisor : 都是一个切点和一个通知组成
Aspect : 多个切点和多个通知组成
Advisor : 代表一般切面,Advice本身就是一个切面,对目标类所有方法进行拦截(* 不带有切点的切面.针对所有方法进行拦截)
PointcutAdvisor : 代表具有切点的切面,可以指定拦截目标类哪些方法(带有切点的切面,针对某个方法进行拦截)
1.4 Spring中AOP开发(针对所有方法增强)
1.导入相应的jar包
spring-aop-3.2.0.RELEASE.jar AOP联盟的jar包
com.springsource.org.aopalliance-1.0.0.jar 依赖包2.编写被代理的对象:
CustomerDao 接口
CustomerDaoImpl 实现类3.编写增强的代码
public class MyBeforeAdvice implements MethodBeforeAdvice{
@Override
/**
* method:执行的方法
* args:方法的参数
* target:目标对象
*/
public void before(Method method, Object[] args, Object target) throws Throwable {
System.out.println("前置增强");
}
}
- 4.生成代理(通过配置生成代理)
1.5 Spring的AspectJ的AOP
AspectJ是一个面向切面的框架,它扩展了Java语言。AspectJ定义了AOP语法所以它有一个专门的编译器用来生成遵守Java字节编码规范的Class文件。
AspectJ是一个基于Java语言的AOP框架
Spring2.0以后新增了对AspectJ切点表达式支持
@AspectJ 是AspectJ1.5新增功能,通过JDK5注解技术,允许直接在Bean类中定义切面
新版本Spring框架,建议使用AspectJ方式来开发AOP
AspectJ表达式:
语法:execution(表达式)
execution(<访问修饰符>?<返回类型><方法名>(<参数>)<异常>)execution(“* cn.itcast.spring3.demo1.dao.*(..)”) ---只检索当前包
execution(“* cn.itcast.spring3.demo1.dao..*(..)”) ---检索包及当前包的子包.
execution(* cn.itcast.dao.GenericDAO+.*(..)) ---检索GenericDAO及子类
AspectJ增强(注解):
- @Before 前置通知,相当于BeforeAdvice,没有办法阻止目标方法的执行
/**
* 前置增强
*/
@Before("execution(* com.luogg.demo1.UserDao.add(..))")
public void before(){
System.out.println("前置增强===>");
}
- @AfterReturning 后置通知,相当于AfterReturningAdvice,可以获得方法的返回值
/*
* 后置增强
*/
@AfterReturning(returning="returnVal",value="execution(* com.luogg.demo1.UserDao.delete(..))")
public void after(Object returnVal){
System.out.println("后置增强===>方法的返回值为:" + returnVal);
}
- @Around 环绕通知,相当于MethodInterceptor,而且可以阻止目标方法的执行,在前边加个if判断即可.
/*
* 环绕增强
*/
@Around(value="execution(* com.luogg.demo1.UserDao.find(..))")
public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable{
System.out.println("环绕前增强");
proceedingJoinPoint.proceed();
System.out.println("环绕后增强");
}
- @AfterThrowing抛出通知,相当于ThrowAdvice
/**
* 抛出异常
*/
@AfterThrowing(value="execution(* com.luogg.demo1.UserDao.find(..))",throwing="e")
public void err(Throwable e){
System.out.println("出异常了"+e.getMessage());
}
- @After 最终final通知,不管是否异常,该通知都会执行
/*
* 最终通知
*/
@After("execution(* com.luogg.demo1.UserDao.find(..))")
public void after(){
System.out.println("最终通知");
}
- @DeclareParents 引介通知,相当于IntroductionInterceptor (不要求掌握)
基于注解
第一步 : 引入jar包.
aspectj依赖aop环境.
spring-aspects-3.2.0.RELEASE.jar
com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar第二步 : 编写被代理对象UserDao
/**
* 编写被代理对象 用户dao层
* @author luogg
*
*/
@Repository("userDao")
public class UserDao {
public void add(){
System.out.println("添加用户");
}
public void delete(){
System.out.println("删除用户");
}
public void update(){
System.out.println("修改用户");
}
public void find(){
System.out.println("查询用户");
}
}
- 第三步 : 使用AspectJ注解形式 定义切面,并定义前置增强
/**
* 定义一个切面,就是切点和增强的结合
* @author luogg
*
*/
@Service("myAspect")
@Aspect //定义切面
public class MyAspect {
/**
* 前置增强
*/
@Before("execution(* com.luogg.demo1.UserDao.*(..))")
public void before(){
System.out.println("前置增强");
}
}
- 第四步 : 配置applicationContext.xml配置文件,开启自动生成代理,并扫描bean
<!-- 开启自动生成代理 -->
<aop:aspectj-autoproxy/>
<!-- 去扫描注解装配的Bean -->
<context:component-scan base-package="com.luogg.demo1"></context:component-scan>
- 第五步 : 编写测试类
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class SpringTest1 {
@Autowired
//@Qualifier("userDao")
private UserDao userDao;
@Test
public void test1(){
userDao.add();
userDao.delete();
userDao.update();
userDao.find();
}
}
输出结果
添加用户
前置增强
删除用户
前置增强
修改用户
前置增强
查询用户
切点的定义
在注解中写切点太麻烦了,直接同意定义,然后通过类名.方法名调用同意的切点.
@Pointcut("execution(* com.luogg.demo1.UserDao.find(..))")
public void myPointCut(){}
/*
* 最终通知
*/
@After("MyAspect.myPointCut()")
public void after(){
System.out.println("最终通知");
}
面试:
- Advisor和Aspect的区别?
- Advisor:Spring传统意义上的切面:支持一个切点和一个通知的组合.
- Aspect:可以支持多个切点和多个通知的组合.
1.6 Spring的JdbcTemplate
Spring对持久层技术的支持
JDBC : org.springframework.jdbc.core.JdbcTemplate
Hibernate3.0 : org.springframework.orm.hibernate3.HibernateTemplate
IBatis(MyBatis) : org.springframework.orm.ibatis.SqlMapClientTemplate
JPA : org.springframework.orm.jpa.JpaTemplate
二.Spring的JDBC模板
2.1 DBCP连接池
导入jar包:
* com.springsource.org.apache.commons.dbcp-1.2.2.osgi.jar
* com.springsource.org.apache.commons.pool-1.5.3.jar
<!-- 配置DBCP连接池 -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql:///spring3_day02"/>
<property name="username" value="root"/>
<property name="password" value="123"/>
</bean>
2.2 C3P0连接池
导入jar包:
* com.springsource.com.mchange.v2.c3p0-0.9.1.2.jar
<!-- 配置c3p0连接池 -->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="com.mysql.jdbc.Driver"/>
<property name="jdbcUrl" value="jdbc:mysql:///spring3_day02"/>
<property name="user" value="root"/>
<property name="password" value="123"/>
</bean>
2.3 将参数设置到属性文件jdbc.properties中
在src下创建jdbc.properties
jdbc.driver = com.mysql.jdbc.Driver
jdbc.url = jdbc:mysql:///spring3_day02
jdbc.user = root
jdbc.password = 123
需要在applicationContext.xml 中使用属性文件配置的内容.
* 第一种写法:
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:jdbc.properties"></property>
</bean>
* 第二种写法:
<context:property-placeholder location="classpath:jdbc.properties"/>
2.4 jdbcTemplate 的 CRUD 操作
Spring学习_day02_AOP,AspectJ,JdbcTemplate的更多相关文章
- Spring学习--用 ASpectJ 注解实现 AOP
用 AspectJ 注解声明切面: 要在 Spring 中声明 AspectJ 切面 , 只需要在 IOC 容器中将切面声明为 bean 实例.当在 Spring IOC 容器中初始化 AsjectJ ...
- Spring学习笔记:jdbcTemplate和数据源配置
一.使用Spring框架jdbcTemplate实现数据库的增删改查 1.数据库 /* SQLyog Ultimate v8.32 MySQL - 5.7.19-log : Database - in ...
- Spring学习之Aspectj开发实现AOP
Aspectj是一个基于Java语言的Aop框架,它提供了强大的Aop功能. Aspectj简介: 1.Aspectj是一个面向切面的框架,它扩展了Java语言,它定义了一个Aop语法. 2.所以它有 ...
- [原创]java WEB学习笔记105:Spring学习---AOP介绍,相关概念,使用AOP,利用 方法签名 编写 AspectJ 切入点表达式
本博客的目的:①总结自己的学习过程,相当于学习笔记 ②将自己的经验分享给大家,相互学习,互相交流,不可商用 内容难免出现问题,欢迎指正,交流,探讨,可以留言,也可以通过以下方式联系. 本人互联网技术爱 ...
- Spring学习之旅(八)Spring 基于AspectJ注解配置的AOP编程工作原理初探
由小编的上篇博文可以一窥基于AspectJ注解配置的AOP编程实现. 本文一下未贴出的相关代码示例请关注小编的上篇博文<Spring学习之旅(七)基于XML配置与基于AspectJ注解配置的AO ...
- spring 学习(四): spring 的 jdbcTemplate 操作
spring 学习(四): spring 的 jdbcTemplate 操作 spring 针对 javaee 的每一层,都提供了相应的解决技术,jdbcTemplate 的主要操作在 dao 层. ...
- 【转】Spring学习---Bean配置的三种方式(XML、注解、Java类)介绍与对比
[原文]https://www.toutiao.com/i6594205115605844493/ Spring学习Bean配置的三种方式(XML.注解.Java类)介绍与对比 本文将详细介绍Spri ...
- 不错的Spring学习笔记(转)
Spring学习笔记(1)----简单的实例 --------------------------------- 首先需要准备Spring包,可从官方网站上下载. 下载解压后,必须的两个包是s ...
- Spring学习(一)--Spring的设计与整体架构
之前只是在学校里大概的学习了一下Spring框架的使用以及一些最基本.浅显的原理,并没有做出深入的学习,等到工作之后想提升自己的时候发现所掌握的Spring框架的简直烂如狗屎,为监督自己的学习进度,立 ...
随机推荐
- codevs——1436 孪生素数 2
1436 孪生素数 2 时间限制: 2 s 空间限制: 1000 KB 题目等级 : 白银 Silver 题解 题目描述 Description 如m=100,n=6 则将输出100 ...
- ASPNET Razor 使用 @Ajax.BeginForm 需要注意到的细节
创建空的web项目,通过Nuget引用mvc组件来搭建空的MVC项目时, 在视图页面中无法使用@Ajax.BegForm来进行异步提交数据, 而新建默认的MVC模板项目却能够正常使用@Ajax.Beg ...
- 通过DaoCloud发布Ghost
首先参考这篇文章: http://docs-static.daocloud.io/daocloud-services/volume-controller 但是按照这篇文章,最后的主题是没有办法应用上去 ...
- Nexus设备升级5.0方法
1. 从该页面为您的设备下载适当的系统映像.然后将它解压缩到一个安全的文件夹. 2. 通过 USB 连接到您的计算机. 3. 使用下列的方法,在fastboot mode下启动设备: 使用 adb ...
- 使用IDA破解TraceMe.exe
我发现用IDA破解TraceMe.exe比ODeasy多了. 打开IDA 后.直接搜索"序列号".得到 双击跳转到反汇编窗体,按F5转换为类C++代码 signed int __s ...
- xul 创建一个按钮
MDN Mozilla 产品与私有技术 Mozilla 私有技术 XUL Toolbars 添加工具栏按钮 (定制工具栏) 添加工具栏按钮 (定制工具栏) 在本文章中 创建一个 overlay 在工具 ...
- Android怎样保证一个线程最多仅仅能有一个Looper?
1. 怎样创建Looper? Looper的构造方法为private,所以不能直接使用其构造方法创建. private Looper(boolean quitAllowed) { mQueue = n ...
- 第十四周(OOP版电子词典)
/* *copyright(c) 2015,烟台大学计算机学院 *All rights reserved. *文件名:第十四周(OOP版电子词典) *作者:王忠 *完毕日期:2015.6.10 *版本 ...
- HDFS03
=====================HDFS数据块(block)===================== 文件被切分成固定大小的数据块 -------------> √默认数据块大小为6 ...
- ROADS - Roads
N cities named with numbers 1 ... N are connected with one-way roads. Each road has two parameters a ...