问题描述
最近公司把应用做了水平拆分,之间的通信想使用thrift,我本来是推荐dubbo的,可是dubbo本身使用spring2.5.6.SEC03,我们的平台使用的spring3.2.0如果使用dubbo版本的spring会导致我们平台使用的org.springframework.jdbc.core.RowMapper全部出错,因为spring2.5.6.SEC03里public interface RowMapper { java.lang.Object mapRow(java.sql.ResultSet resultSet, int i) throws java.sql.SQLException;}而spring3里public interface RowMapper <T> { T mapRow(java.sql.ResultSet resultSet, int i) throws java.sql.SQLException;}想请问各种大神,有没有解决方法 问题补充:如果不使用dubbo本身自带的spring,就会出现想服务化的接口无法注册成功的问题<exclusions> <exclusion> <artifactId>spring</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions>
解决方案
我没碰到你的产问题,我用的是spring4.1dubbo2.5.3一切正常啊,用的乐合的呢,
解决方案二:
楼主问题解决了吗?怎么解决的?我也遇到这个问题了。。
时间: 2024-10-31 19:07:30