搭建ssh框架,在配置完applicationContext.xml测试时报daoImpl的no matching editors or conversion strategy found。。。
上网搜了一下,在<aop:config>里加上 proxy-target-class="true" 。。
意思是代理目标类设为true。。
<aop:config proxy-target-class="true"> <aop:pointcut id="aopMananger" expression="execution(* com.bjsxt.service.*Impl.*(..))" /> <aop:advisor advice-ref="txManager" pointcut-ref="aopMananger" /> </aop:config>
时间: 2024-10-15 08:48:21