spring 2.0 Exception处理

java.lang.IllegalArgumentException: warning no match for this type name: com.tzh.bbs.dao [Xlint:invalidAbsoluteTypeName]
如果在配置spring2.0的事务时,系统后台出现这种异常。
你此时最好查看一下您的spring 配置文件。一般是applicationContext.xml文件.
其中有这么一段:
    <aop:config>
<aop:pointcut id="UserloginActions" expression=" execution(* com.tzh.bbs.dao.*.*(..))"/>
<aop:advisor advice-ref="tx" pointcut-ref="UserloginActions"/>
</aop:config>

一定要注意其中红色字体部分.如果没有com.tzh.bbs.dao.*.*中后边的*,那么后台程序很难有可能报上面的异常.一定要小心.

你可能感兴趣的:(DAO,spring,xml,bbs)