摘要:
1.导入log4j.jar,开启log4j DEBUG模式 2.查看打印日志,可以发现一个重要信息: 2020-03-03 15:13:31,870 DEBUG [org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAut 阅读全文
摘要:
一、JDK动态代理实现 接口 public interface UserService { void findAll(); } 实现类 public class UserServiceImpl implements UserService { public void findAll() { Syst 阅读全文