All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.zhangxd1989.basetool.aop.aspects.SimpleAspect Maven / Gradle / Ivy

package com.github.zhangxd1989.basetool.aop.aspects;

import java.lang.reflect.Method;

/**
 * 简单切面类,不做任何操作
* 可以继承此类实现自己需要的方法即可 * * @author sheldon */ public class SimpleAspect implements Aspect { @Override public boolean before(Object target, Method method, Object[] args) { //继承此类后实现此方法 return true; } @Override public boolean after(Object target, Method method, Object[] args) { //继承此类后实现此方法 return true; } @Override public boolean afterException(Object target, Method method, Object[] args, Throwable e) { //继承此类后实现此方法 return true; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy