一、基于注解的方式配置 bean
1. 组件扫描(component scanning):
Spring 能够从 classpath 下自动扫描, 侦测和实例化具有特定注解的组件.
特定组件包括:
@Component: 基本注解, 标识了一个受 Spring 管理的组件
@Respository: 标识持久层组件
@Service: 标识服务层(业务层)组件
@Controller: 标识表现层组件
对于扫描到的组件, Spring 有默认的命名策略: 使用非限定类名, 第一个字母小写. 也可以在注解中通过 value 属性值标识组件的名称
注意:需要引入 spring-aop.jar
示例:
@Controller("ziry") public class ZiryAnnotation { }
2. 当在组件类上使用了特定的注解之后, 还需要在 Spring 的配置文件中声明
<!-- 需要导入命名空间: xmlns:context="http://www.springframework.org/schema/context" --> <context:component-scan base-package="me.ziry.annotation" />
base-package 属性指定一个需要扫描的基类包,Spring 容器将会扫描这个基类包里及其子包中的所有类.
当需要扫描多个包时, 可以使用逗号分隔.
如果仅希望扫描特定的类而非基包下的所有类,可使用 resource-pattern 属性过滤特定的类,即“base-package+resource-pattern”将组成匹配模式用于匹配类路径中的组件,默认后缀为“**/*.class”,即指定包下的所有以.class结尾的类文件;示例:
<context:component-scan base-package="me.ziry.annotation" resource-pattern="autowire/*.class"/>
指定扫描与不扫描
<!-- 要把use-default-filter设置成false <context:exclude-filter>指定的不扫描, <context:include-filter>指定的扫描 --> <context:component-scan base-package="me.ziry.annotation" use-default-filters="false"> <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/> </context:component-scan>
type类型如下
annotation | com.yl.XxxAnnotation | 所有标注了XxxAnnotation的类,该类型采用目标类是否标注了某个注解进行过滤 |
assinable | com.yl.XxxService | 所有继承或扩展XxxService的类,该类型采用了目标类是否继承或扩展某个特定类进行过滤 |
aspectj | com.yl.*Service | 所有类名义Service结束的类及继承或扩展它们的类,该类型采用AspectJ表达式进行过滤 |
regex | com.yl.anno.* | 所有com.yl.anno包下的类。该类型采用正则表达式,根据类的类名进行过滤 |
custom | com.yl.XxxTypeFilter | 采用XxxTypeFilter通过代码的方式定义过滤原则。该类必须实现org.springframework.core.type.TypeFilter接口 |
二、组件装配
介绍:
<context:component-scan> 元素还会自动注册 AutowiredAnnotationBeanPostProcessor 实例, 该实例可以自动装配具有 : @Autowired 和 @Resource 、@Inject注解的属性
1. 使用 @Autowired 自动装配 Bean
@Autowired 注解自动装配具有兼容类型的单个 Bean属性
构造器, 普通字段(即使是非 public), 一切具有参数的方法都可以应用@Authwired 注解
默认情况下, 所有使用 @Authwired 注解的属性都需要被设置. 当 Spring 找不到匹配的 Bean 装配属性时, 会抛出异常, 若某一属性允许不被设置, 可以设置 @Authwired 注解的 required 属性为 false
默认情况下, 当 IOC 容器里存在多个类型兼容的 Bean 时, 通过类型的自动装配将无法工作. 此时可以在 @Qualifier 注解里提供 Bean 的名称. Spring 允许对方法的入参标注 @Qualifiter 已指定注入 Bean 的名称
@Authwired 注解也可以应用在数组类型的属性上, 此时 Spring 将会把所有匹配的 Bean 进行自动装配.
@Authwired 注解也可以应用在集合属性上, 此时 Spring 读取该集合的类型信息, 然后自动装配所有与之兼容的 Bean.
@Authwired 注解用在 java.util.Map 上时, 若该 Map 的键值为 String, 那么 Spring 将自动装配与之 Map 值类型兼容的 Bean, 此时 Bean 的名称作为键值
2. 使用 @Resource 或 @Inject 自动装配 Bean
Spring 还支持 @Resource 和 @Inject 注解,这两个注解和 @Autowired 注解的功用类似
@Resource 注解要求提供一个 Bean 名称的属性,若该属性为空,则自动采用标注处的变量或方法名作为 Bean 的名称
@Inject 和 @Autowired 注解一样也是按类型匹配注入的 Bean, 但没有 reqired 属性
建议使用 @Autowired 注解
三、spring4新特性泛型依赖注入
示例:
UserModel:
public class UserModel { }
BaseRepository:
public class BaseRepository<T> { }
BaseService:
import org.springframework.beans.factory.annotation.Autowired; public class BaseService<T> { @Autowired //关键所在 protected BaseRepository<T> baseRepository; public void add() { System.out.println("bese service add()..."); System.out.println(baseRepository); } }
UserRepository:
import org.springframework.stereotype.Repository; @Repository //交给IOC容器来管理 public class UserRepository extends BaseRepository<UserModel> { }
========================区别========================
UserService:
以前service写法:
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service //交给IOC容器来管理 public class UserService extends BaseService<UserModel> { @Autowired public void setUserRepository(UserRepository userRepository) { this.baseRepository = userRepository; } }
泛型注入写法:
import org.springframework.stereotype.Service; @Service //交给IOC容器来管理 public class UserService extends BaseService<UserModel> { }
四、AOP
简介
AOP(Aspect-Oriented Programming, 面向切面编程): 是一种新的方法论, 是对传统 OOP(Object-Oriented Programming, 面向对象编程) 的补充.
AOP 的主要编程对象是切面(aspect), 而切面模块化横切关注点.
在应用 AOP 编程时, 仍然需要定义公共功能, 但可以明确的定义这个功能在哪里, 以什么方式应用, 并且不必修改受影响的类. 这样一来横切关注点就被模块化到特殊的对象(切面)里.
AOP 的好处:
-- 每个事物逻辑位于一个位置, 代码不分散, 便于维护和升级
-- 业务模块更简洁, 只包含核心业务代码.
2. AOP术语
切面(Aspect): 横切关注点(跨越应用程序多个模块的功能)被模块化的特殊对象
通知(Advice): 切面必须要完成的工作
目标(Target): 被通知的对象
代理(Proxy): 向目标对象应用通知之后创建的对象
连接点(Joinpoint):程序执行的某个特定位置:如类某个方法调用前、调用后、方法抛出异常后等。连接点由两个信息确定:方法表示的程序执行点;相对点表示的方位。例如 ArithmethicCalculator#add() 方法执行前的连接点,执行点为 ArithmethicCalculator#add(); 方位为该方法执行前的位置
切点(pointcut):每个类都拥有多个连接点:例如 ArithmethicCalculator 的所有方法实际上都是连接点,即连接点是程序类中客观存在的事务。AOP 通过切点定位到特定的连接点。类比:连接点相当于数据库中的记录,切点相当于查询条件。切点和连接点不是一对一的关系,一个切点匹配多个连接点,切点通过 org.springframework.aop.Pointcut 接口进行描述,它使用类和方法作为连接点的查询条件。
3. 在 Spring 中启用 AspectJ 注解支持
1. 要在 Spring 应用中使用 AspectJ 注解, 必须在 classpath 下包含 AspectJ 类库: aopalliance.jar、aspectj.weaver.jar 和 spring-aspects.jar 2. 将 aop Schema 添加到 <beans> 根元素中. 3. 要在 Spring IOC 容器中启用 AspectJ 注解支持, 只要在 Bean 配置文件中定义一个空的 XML 元素 <aop:aspectj-autoproxy> 4. 当 Spring IOC 容器侦测到 Bean 配置文件中的 <aop:aspectj-autoproxy> 元素时, 会自动为与 AspectJ 切面匹配的 Bean 创建代理.
4. 用 AspectJ 注解声明切面
要在 Spring 中声明 AspectJ 切面, 只需要在 IOC 容器中将切面声明为 Bean 实例. 当在 Spring IOC 容器中初始化 AspectJ 切面之后, Spring IOC 容器就会为那些与 AspectJ 切面相匹配的 Bean 创建代理.
在 AspectJ 注解中, 切面只是一个带有 @Aspect 注解的 Java 类.
通知是标注有某种注解的简单的 Java 方法.
AspectJ 支持 5 种类型的通知注解:
@Before: 前置通知, 在方法执行之前执行
前置通知:在方法执行之前执行的通知
前置通知使用 @Before 注解, 并将切入点表达式的值作为注解值.
@After: 后置通知, 在方法执行之后执行
后置通知是在连接点完成之后执行的, 即连接点返回结果或者抛出异常的时候, 下面的后置通知记录了方法的终止.
一个切面可以包括一个或者多个通知.
@AfterRunning: 返回通知, 在方法返回结果之后执行
无论连接点是正常返回还是抛出异常, 后置通知都会执行. 如果只想在连接点返回的时候记录日志, 应使用返回通知代替后置通知.
在返回通知中, 只要将 returning 属性添加到 @AfterReturning 注解中, 就可以访问连接点的返回值. 该属性的值即为用来传入返回值的参数名称.
必须在通知方法的签名中添加一个同名参数. 在运行时, Spring AOP 会通过这个参数传递返回值.
原始的切点表达式需要出现在 pointcut 属性中
@AfterThrowing: 异常通知, 在方法抛出异常之后
只在连接点抛出异常时才执行异常通知
将 throwing 属性添加到 @AfterThrowing 注解中, 也可以访问连接点抛出的异常. Throwable 是所有错误和异常类的超类. 所以在异常通知方法可以捕获到任何错误和异常.
如果只对某种特殊的异常类型感兴趣, 可以将参数声明为其他异常的参数类型. 然后通知就只在抛出这个类型及其子类的异常时才被执行.
@Around: 环绕通知, 围绕着方法执行
环绕通知是所有通知类型中功能最为强大的, 能够全面地控制连接点..甚至可以控制是否执行连接点
在环绕对于环绕通知来说, 连接点的参数类型必须是 ProceedingJoinPoint . 它是 JoinPoint 的子接口, 允许控制何时执行, 是否执行连接点.
通知中需要明确调用 ProceedingJoinPoint 的 proceed() 方法来执行被代理的方法. 如果忘记这样做就会导致通知被执行了, 但目标方法没有被执行.
注意: 环绕通知的方法需要返回目标方法执行之后的结果, 即调用 joinPoint.proceed(); 的返回值, 否则会出现空指针异常
5. 利用方法签名编写 AspectJ 切入点表达式
最典型的切入点表达式时根据方法的签名来匹配各种方法:
execution * com.atguigu.spring.ArithmeticCalculator.*(..): 匹配 ArithmeticCalculator 中声明的所有方法,第一个 * 代表任意修饰符及任意返回值. 第二个 * 代表任意方法. .. 匹配任意数量的参数. 若目标类与接口与该切面在同一个包中, 可以省略包名.
execution public * ArithmeticCalculator.*(..): 匹配 ArithmeticCalculator 接口的所有公有方法.
execution public double ArithmeticCalculator.*(..): 匹配 ArithmeticCalculator 中返回 double 类型数值的方法
execution public double ArithmeticCalculator.*(double, ..): 匹配第一个参数为 double 类型的方法, .. 匹配任意数量任意类型的参数
execution public double ArithmeticCalculator.*(double, double): 匹配参数类型为 double, double 类型的方法.
在 AspectJ 中, 切入点表达式可以通过操作符 &&, ||, ! 结合起来.
@Before("execution(* *.add(..) || * *.multiply(..))")
示例:
1.Calculator.java
/** * 计算器接口 */ public interface Calculator { public int add(int i, int j); public int subtract(int i, int j); public int multiply(int i, int j); public int divide(int i, int j); }
2. CalculatorImpl.java
import org.springframework.stereotype.Component; /** * 实现计算器类 */ @Component("calculator") public class CalculatorImpl implements Calculator { @Override public int add(int i, int j) { int result = i + j; return result; } @Override public int subtract(int i, int j) { int result = i - j; return result; } @Override public int multiply(int i, int j) { int result = i * j; return result; } @Override public int divide(int i, int j) { int result = i / j; return result; } }
3. CalculatorLoggingAspecj.java
package me.ziry.aop; import java.util.Arrays; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.After; import org.aspectj.lang.annotation.AfterReturning; import org.aspectj.lang.annotation.AfterThrowing; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; import org.springframework.stereotype.Component; @Aspect @Component public class CalculatorLoggingAspecj { /** * 前置通知 * @param joinPoint 链接点 */ @Before("execution(public int me.ziry.aop.CalculatorImpl.*(..))") public void logBefore(JoinPoint joinPoint) { //通过连接点JoinPoint获取方法名 String methodName = joinPoint.getSignature().getName(); //通过连接点JoinPoint获取方法参数 Object [] args = joinPoint.getArgs(); System.out.println("这是前置通知,方法:" + methodName + "; 参数: " + Arrays.asList(args)); } /** * 后置通知 * @param joinPoint 链接点 */ @After("execution(public int me.ziry.aop.CalculatorImpl.*(..))") public void logAfter(JoinPoint joinPoint) { //通过连接点JoinPoint获取方法名 String methodName = joinPoint.getSignature().getName(); //通过连接点JoinPoint获取方法参数 Object [] args = joinPoint.getArgs(); System.out.println("这是后置通知,方法:" + methodName + "; 参数:" + Arrays.asList(args)); } /** * 返回通知 * @param joinPoint 链接点 */ @AfterReturning(pointcut="execution(public int me.ziry.aop.CalculatorImpl.*(..))",returning="returnValue" ) public void logAfterReturning(JoinPoint joinPoint,Object returnValue) { //通过连接点JoinPoint获取方法名 String methodName = joinPoint.getSignature().getName(); //通过连接点JoinPoint获取方法参数 Object [] args = joinPoint.getArgs(); System.out.println("这是返回通知,方法:" + methodName + "; 参数:" + Arrays.asList(args)+"; 返回值:"+returnValue); } /** * 异常通知 * @param joinPoint 链接点 */ @AfterThrowing(pointcut="execution(public int me.ziry.aop.CalculatorImpl.*(..))",throwing="e") public void logAfterThrowing(JoinPoint joinPoint, Exception e) { //通过连接点JoinPoint获取方法名 String methodName = joinPoint.getSignature().getName(); //通过连接点JoinPoint获取方法参数 Object [] args = joinPoint.getArgs(); System.out.println("这是异常通知,方法:" + methodName + "; 参数:" + Arrays.asList(args)+"; 异常信息:"+e); } }
4. applicationContext.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:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> <!-- 自动扫描的包 --> <context:component-scan base-package="me.ziry.aop"></context:component-scan> <!-- 使 AspectJ 的注解起作用 --> <aop:aspectj-autoproxy></aop:aspectj-autoproxy> </beans>
5. Main.java
import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class Main { public static void main(String[] args) { ApplicationContext act = new ClassPathXmlApplicationContext("applicationContext.xml"); Calculator calculator = act.getBean(Calculator.class); System.out.println(calculator.add(5, 11)); System.out.println(calculator.multiply(5, 10)); System.out.println(calculator.divide(5, 0)); } }
6. 环绕通知-示例
import java.util.Arrays; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import org.springframework.stereotype.Component; @Aspect @Component public class CalculatorLoggingAspecj { /** * 环绕通知 * @param ProceedingJoinPoint proceedingJoinPoint 链接点 */ @Around("execution(public int me.ziry.aop.CalculatorImpl.*(..))") public Object logBefore(ProceedingJoinPoint proceedingJoinPoint) { //通过连接点JoinPoint获取方法名 String methodName = proceedingJoinPoint.getSignature().getName(); //通过连接点JoinPoint获取方法参数 Object [] args = proceedingJoinPoint.getArgs(); System.out.println("这是环绕通知,方法:" + methodName + "; 参数: " + Arrays.asList(args)); Object result = null; try { System.out.println("前置通知"); result = proceedingJoinPoint.proceed(); System.out.println("返回通知");//可以访问返回值 } catch (Throwable e) { System.out.println("异常通知"); throw new RuntimeException(e); } System.out.println("后置通知"); return result; } }
7. 指定切面的优先级
在同一个连接点上应用不止一个切面时, 除非明确指定, 否则它们的优先级是不确定的.
切面的优先级可以通过实现 Ordered 接口或利用 @Order 注解指定.
实现 Ordered 接口, getOrder() 方法的返回值越小, 优先级越高.
若使用 @Order 注解, 序号出现在注解中
示例:
@Order(1) @Aspect @Component public class CalculatorLoggingAspecj { } @Order(2) @Aspect @Component public class AppLoggingAspecj { }
8. 重用切入点定义
在编写 AspectJ 切面时, 可以直接在通知注解中书写切入点表达式. 但同一个切点表达式可能会在多个通知中重复出现.
在 AspectJ 切面中, 可以通过 @Pointcut 注解将一个切入点声明成简单的方法. 切入点的方法体通常是空的, 因为将切入点定义与应用程序逻辑混在一起是不合理的.
切入点方法的访问控制符同时也控制着这个切入点的可见性. 如果切入点要在多个切面中共用, 最好将它们集中在一个公共的类中. 在这种情况下, 它们必须被声明为 public. 在引入这个切入点时, 必须将类名也包括在内. 如果类没有与这个切面放在同一个包中, 还必须包含包名.
其他通知可以通过方法名称引入该切入点.
示例:
import java.util.Arrays; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.After; import org.aspectj.lang.annotation.AfterReturning; import org.aspectj.lang.annotation.AfterThrowing; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; import org.aspectj.lang.annotation.Pointcut; import org.springframework.stereotype.Component; @Aspect @Component public class CalculatorLoggingAspecj { @Pointcut("execution(public int *.*(..))") private void joinPointExecution() { } @Before("joinPointExecution()") public void logBefore(JoinPoint joinPoint) { System.out.println("这是前置通知"); } } 其他类 : @Aspect @Component public class AppLoggingAspecj { //包名.类名.方法名 @Before("me.ziry.CalculatorLoggingAspecj.joinPointExecution()") public void logBefore(JoinPoint joinPoint) { System.out.println("这是前置通知"); } }
9. 用基于 XML 的配置声明切面
除了使用 AspectJ 注解声明切面, Spring 也支持在 Bean 配置文件中声明切面. 这种声明是通过 aop schema 中的 XML 元素完成的.
正常情况下, 基于注解的声明要优先于基于 XML 的声明. 通过 AspectJ 注解, 切面可以与 AspectJ 兼容, 而基于 XML 的配置则是 Spring 专有的. 由于 AspectJ 得到越来越多的 AOP 框架支持, 所以以注解风格编写的切面将会有更多重用的机会.
声明切面
1. 当使用 XML 声明切面时, 需要在 <beans> 根元素中导入 aop Schema 2. 在 Bean 配置文件中, 所有的 Spring AOP 配置都必须定义在 <aop:config> 元素内部. 对于每个切面而言, 都要创建一个 <aop:aspect> 元素来为具体的切面实现引用后端 Bean 实例. 3. 切面 Bean 必须有一个标示符, 供 <aop:aspect> 元素引用
声明切入点
1. 切入点使用 <aop:pointcut> 元素声明 2. 切入点必须定义在 <aop:aspect> 元素下, 或者直接定义在 <aop:config> 元素下. 3. 定义在 <aop:aspect> 元素下: 只对当前切面有效 4. 定义在 <aop:config> 元素下: 对所有切面都有效 5. 基于 XML 的 AOP 配置不允许在切入点表达式中用名称引用其他切入点.
声明通知
1. 在 aop Schema 中, 每种通知类型都对应一个特定的 XML 元素. 2. 通知元素需要使用 <pointcut-ref> 来引用切入点, 或用 <pointcut> 直接嵌入切入点表达式. method 属性指定切面类中通知方法的名称.
applicatonContext.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:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> <!-- 配置 bean --> <bean id="calculator" class="me.ziry.aop.xml.CalculatorImpl"></bean> <!-- 配置切面的 bean. --> <bean id="calculatorLoggingAspecj" class="me.ziry.aop.xml.CalculatorLoggingAspecj"></bean> <!-- 配置 AOP --> <aop:config > <!-- 配置切点表达式 --> <aop:pointcut expression="execution(* me.ziry.aop.xml.CalculatorImpl.*(..))" id="pointcut"/> <!-- 配置切面及通知 --> <aop:aspect ref="calculatorLoggingAspecj" order="1" > <!-- 前置通知 --> <aop:before method="logBefore" pointcut-ref="pointcut" /> <!-- 后置通知 --> <aop:after method="logAfter" pointcut-ref="pointcut" /> <!-- 返回通知 --> <aop:after-returning method="logAfterReturning" pointcut-ref="pointcut" returning="returnValue"/> <!-- 异常通知 --> <aop:after-throwing method="logAfterThrowing" pointcut-ref="pointcut" throwing="e" /> <!-- 环绕通知 <aop:around method="aroundBefore" pointcut-ref="pointcut"/> --> </aop:aspect> </aop:config> </beans>
纯干货!Spring4 简单教程 共 4 篇 分别:
注意:转载请注明出处,谢谢!
注意:本文归作者所有,未经作者允许,不得转载