利用Spring实现AOP首先写一个UserService接口:
public interface UserService {
public void add();
public void delete();
2022-04-06