【BUG】 dubbo

刚开始接触dubbo不是很仔细

	<!-- 引用dubbo服务 -->
	<dubbo:application name="taotao-manager-web"/>
	<dubbo:registry protocol="zookeeper" address="192.168.25.129:2181"/>	
	<dubbo:reference interface="com.taotao.service.ItemsService" id="itemsService" />
	<dubbo:reference interface="com.taotao.service.ItemCategoryService" id="itemCategoryService" />

在使用dubbo过程中,interface原本应该是接口类的全名,结果自己写成了实现类的全名。在此错误停留了很长时间,下不为例。

猜你喜欢

转载自blog.csdn.net/lxiansheng001/article/details/81607188
bug