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

cn.hutool.aop.aspects.SimpleAspect Maven / Gradle / Ivy

There is a newer version: 5.8.33
Show newest version
package cn.hutool.aop.aspects;

import java.io.Serializable;
import java.lang.reflect.Method;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy