11 2019 档案
摘要:1、foreach的属性 item:集合中元素迭代时的别名,必填 index:在list和array中,index是元素的序号;在map中,index是元素的key,可选 open:foreach代码的开始符号,一般是 ‘(’ 并和 ')' 合用,常用在in(),values()时,可选 separ
阅读全文
摘要:切面1与切面2之间使用@Order注解指定执行顺序,数字小的先执行 切面1: @Order(1) @Aspect @Component xxx @Around(value = "webPointcut()") public Object around(ProceedingJoinPoint join
阅读全文