<aop:pointcut id="logPointcut" expression="(execution(* net.com..a..*Controller.*(..))
or execution(* net.com.a..*ServiceImpl.*(..))
or execution(* net.com.a..*Mapper.*(..)) />
这是xml文件中的切入点设置
public interface UserMapper {
List<UserVO> selectUser(UserVO userVO) throws Exception;
}
我想在界面中设置AOP切入点。 它们是由mybatis创建的。
上面的表达式不适用于映射器。
从根本上不可能吗?
答案 0 :(得分:0)
这个问题在这里已经被问过数十遍了,总是被那些想使用Spring AOP的人问到,但从来没有真正地去麻烦它的文档,或者至少在发布问题之前先搜索StackOverflow。这样的开发人员如何生存?
简短的答案是: