Spring AOP--基本配置

第一步:添加Spring AOP相关的jar包(还在学习中,慢慢更新)

Spring AOP依赖AOP Alliance和AspectJ

Alliance下载地址:https://sourceforge.net/projects/aopalliance/files/aopalliance/1.0/

AspectJ下载地址:https://mvnrepository.com/artifact/org.aspectj/aspectjweaver

Spring AOP--基本配置_第1张图片

第二步:配置ApplicationContext.xml 并且实现提示

配置文件如下:

Spring AOP--基本配置_第2张图片

 配置提示:

1、复制 http://www.springframework.org/schema/aop/spring-aop.xsd

2、找到 Windows-》Preference,如下图所示

Spring AOP--基本配置_第3张图片

点击Add 然后点击File System..找到Spring路径下的spring-aop-xsd文件

Spring AOP--基本配置_第4张图片

Key type选择Schema location,并把刚复制的路径信息粘粘到key处,点击OK返回

Spring AOP--基本配置_第5张图片

 配置完成!

你可能感兴趣的:(java,Spring)