程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> Spring AOP 開發中遇到問題:Caused by: java.lang.IllegalArgumentException: warning no match for this type name: com.xxx.collector.service.impl.XxxServiceImpl [Xlint:invalidAbsoluteTypeName],webcollector

Spring AOP 開發中遇到問題:Caused by: java.lang.IllegalArgumentException: warning no match for this type name: com.xxx.collector.service.impl.XxxServiceImpl [Xlint:invalidAbsoluteTypeName],webcollector

編輯:JAVA綜合教程

Spring AOP 開發中遇到問題:Caused by: java.lang.IllegalArgumentException: warning no match for this type name: com.xxx.collector.service.impl.XxxServiceImpl [Xlint:invalidAbsoluteTypeName],webcollector


在網上找了很多,都不是我想要的,後來發現是我在springaop注解的時候 寫錯了類名導致的這個問題

1 @Pointcut("execution(* com.xxx.collector.service.impl.XxxServiceImpl.add(..))")
2 public void pointcutExpression() {
3 
4 }

如上所示的部分寫錯了導致的

第一次用aop....

希望可以幫到跟我一樣的第一次使用aop出現這種錯誤的人

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved