今天在调试代码时,Spring启动后出现了错误:Error creating bean with name 'wthcController': Injection of autowired dependencies failed;……的错误。用的项目架构是SSM。
网上查了好久都没有找到解决办法,然后问了一下小伙伴,原来我新建的Service只是发布了,但是没有调用注册。
在新建一个Service之后,有两步要做。
第一步是在Service层里进行发布,一般是在dubbo_provider.xml中,代码中是:
<dubbo:service interface="com.diit.inter.main.dubbo.IDcWyhcrwbService" ref="IDcWyhcrwbService" protocol="dubbo" timeout="1200000" />
<bean id="IDcWyhcrwbService" class="com.diit.service.main.dubbo.DcWyhcrwbServiceImpl"/>
第二步是在web层进行调用注册,一般是在dubbo_consumer.xml中,代码是:
<dubbo:reference interface="com.diit.inter.main.dubbo.IDcWyhcrwbService" id="IDcWyhcrwbService" protocol="dubbo" check="false" />
经过这两步之后就可以正常的调用了。