The following error occurred during schema generation: Unable to load bytecode f_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > The following error occurred during schema generation: Unable to load bytecode f

The following error occurred during schema generation: Unable to load bytecode f

 2013/10/28 18:58:32  温柔的星空  程序员俱乐部  我要评论(0)
  • 摘要:最近在整axis2,加入spring之后发现报错Thefollowingerroroccurredduringschemageneration:Unabletoloadbytecodeforclass网上找好多资料看了之后,发现是由于axis2不能参与事务管理,而我的写的service又刚好符合pointcut,所以报错了,后来把pointcut改写了一下,就不会报错了如出现spring这种错误<aop:config><!--切入点--><aop
  • 标签:Schema


最近在整axis2,加入spring之后发现报错The following error occurred during schema generation: Unable to load bytecode for class

网上找好多资料看了之后,发现是由于axis2 不能参与事务管理,而我的写的service又刚好符合pointcut,所以报错了,后来把pointcut改写了一下,就不会报错了




如出现spring这种错误

<aop:config>
   <!-- 切入点 -->
   <aop:pointcut id="gkServicePct" expression="execution(* com.zrm.service.*(..))" />
   <aop:advisor pointcut-ref="gkServicePct" advice-ref="gkTxAdvice" order="0" />
</aop:config>

出现warning no match for this type name: com.zrm.service [Xlint:invalidAbsoluteTypeName]错误

配置事务时,一定注意expression="execution(* com.zrm.service.*(..))" 应该为

expression="execution(* com.zrm.service.*.*(..))" ,这样,切点才定位到方法上了。
发表评论
用户名: 匿名