no matching editors or conve

在spring事务时会出现。
解决办法是:
在事务中加上下面语句
<property name="proxyTargetClass" >
   <value>true</value>
  </property>
表面proxy代理的是类而不是接口。

如果是注释则用:
成<tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true"/>

你可能感兴趣的:(spring)