摘要: 1.环境搭建 pom文件加入aspects的依赖 ~~~java org.springframework spring context 5.1.9.RELEASE org.springframework spring aspects 5.1.9.RELEASE ~~~ 定义一个需要被切入的bean 阅读全文
posted @ 2020-05-08 19:50 shiki0921 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 只实现最基本的add,remove,size,get方法。 定义接口 实现JDK的list对初学者难度太大,这里自己定义一个。 public interface IList { public void add(E e); public E remove(E e); public int size() 阅读全文
posted @ 2020-05-08 19:48 shiki0921 阅读(377) 评论(0) 推荐(0) 编辑