Spring-使用注解实现AOP(九)
2019-08-16 11:56:32来源:博客园 阅读 ()
Spring-使用注解实现AOP(九)
注解实现AOP代码流程变得极为简单,但是我们要明白其中的原理是何.
在我们自定义实现的AOP中加入几个注解就可以实现
注意点:
要写切面的注解-->Aspect
切入点可以直接写在增强上加上对应的注解就可以了.
配置文件中加入识别注解自动代理的代码.---->[<aop:aspectj-autoproxy/>]
目标对象不变userService和userServiceImpl
package org.west.anno; import org.aspectj.lang.annotation.After; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; //切面注解 @Aspect public class Anno { // 切入点可以直接写在增强上面 @Before("execution(* org.west.service.UserServiceImpl.*(..))") public void before() { System.out.println("------>方法执行前"); } @After("execution(* org.west.service.UserServiceImpl.*(..))") public void after() { System.out.println("------>方法执行后"); } }
注意注解before 和after的包要导对,是Aspectj的包.
Spring的核心配置文件
<?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" 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.xsd"> <!--注册bean对象--> <bean id="userService" class="org.west.service.UserServiceImpl"/> <!--注解实现AOP的类--> <bean id="anno" class="org.west.anno.Anno"/> <!--识别注解自动代理--> <aop:aspectj-autoproxy/> </beans>
测试类:
public class TestDemo { @Test public void test() { ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext2.xml"); UserService userService = (UserService) context.getBean("userService"); userService.add(); }
AOP小结:
-
-
需要到一个包,用来进行aop织入的包: aspectjweaver
-
注意别遗漏了切面;
-
三种实现AOP的方法
-
使用SpringAPI来实现AOP
-
使用自定义类来实现AOP
-
使用注解实现AOP
-
原文链接:https://www.cnblogs.com/xiaoqiqistudy/p/11305378.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Java--注解 2020-06-11
- Java 必须掌握的 12 种 Spring 常用注解! 2020-06-08
- 【spring cloud hoxton】Ribbon 真的能被 spring-cloud-load 2020-06-08
- 聊聊 OAuth 2.0 的 token expire_in 使用 2020-06-08
- 为什么阿里巴巴Java开发手册中强制要求接口返回值不允许使用 2020-06-06
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash