您好,登錄后才能下訂單哦!
對某個類型中的方法進(jìn)行攔截,然后加入固定的業(yè)務(wù)邏輯,這是AOP面向切面編程可以做的事,在springboot里實(shí)現(xiàn)aop的方法也有很多, spring-boot-starter-aop
或者 aspectjweaver
都是可以實(shí)現(xiàn)的,不過我們在實(shí)現(xiàn)之前,先來看一下aop里的幾個概念。
概念
實(shí)現(xiàn)
1 引用依賴包
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency>
2 添加切面和攔截的行為
@Aspect @Component @Slf4j public class TestAspect { /** * 對TestService類下面的所有方法攔截. */ @Pointcut("execution(* com.lind.start.test.aop.TestService.*(..))") public void pointcut() { } //前置通知 @Before("pointcut()") public void beforeMethod(JoinPoint joinPoint) { if (joinPoint.getArgs().length == 1 && joinPoint.getArgs()[0] instanceof User) { User user = (User) joinPoint.getArgs()[0]; user.setUsername("aop賦值"); log.info("調(diào)用了前置通知" + user.toString()); } } //@After: 后置通知 @After("pointcut()") public void afterMethod(JoinPoint joinPoint) { log.info("調(diào)用了后置通知"); } //@AfterRunning: 返回通知 result為返回內(nèi)容 @AfterReturning(value = "pointcut()", returning = "result") public void afterReturningMethod(JoinPoint joinPoint, Object result) { log.info("調(diào)用了返回通知"); } //@Around:環(huán)繞通知 @Around("pointcut()") public Object Around(ProceedingJoinPoint pjp) throws Throwable { log.info("around執(zhí)行方法之前"); Object object = pjp.proceed(); log.info("around執(zhí)行方法之后--返回值:" + object); return object; } }
3 調(diào)用及結(jié)果
@SpringBootTest @RunWith(SpringRunner.class) public class AopTest { @Autowired TestService testService; @Test public void test() { testService.print(new User()); } }
總結(jié)
到此這篇關(guān)于springboot 使用自定義的aspect的示例代碼的文章就介紹到這了,更多相關(guān)springboot自定義的aspect內(nèi)容請搜索億速云以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持億速云!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。