xml语法

1.在xml 中用逻辑运算符"&&" 会出现错误提示,可以用and 代替.或(||)和非(!) 用符号则正常.and 和! 之类的符号可以在xml 中混用. 如下

 <aop:pointcut expression="execution(* com.skyline.dao.*+.*(..))  and !execution(* com.skyline.dao.*.*(..))"     id="log_service"/>
原文地址:https://www.cnblogs.com/predisw/p/4791687.html