springboot整合dubbo加上事務註解啟動報錯的問題
阿新 • • 發佈:2018-11-21
springboot整合dubbo加上事務註解啟動報錯的問題
如果使用以下方式
在其實現類中加入了事務註解
@Reference(version = "1.0.0", timeout = 30000)
private ShopService shopService;
@Service(version = "1.0.0")
public class OrderFoodServiceImpl implements OrderFoodService {
則啟動時就會報錯,提示 無法引入ShopService這個類
application.yml 配置
server:
port: 8083
spring:
dubbo:
application:
name: com.deng
registry:
address: zookeeper://36.155.111.35:2181
protocol:
name: dubbo
port: 20880
scan: com.deng.dubbo
改之前
現在應該採用xml方式暴露 服務
只要將 服務暴露 發現 改為 這種方式即可。
dubbo-service.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd
http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd">
<!-- 宣告需要暴露的服務介面 -->
<dubbo:service interface="com.service.OrderService" ref="orderServiceImpl" timeout="300000"/>
<dubbo:service interface="com.service.ShopService" ref="shopService" timeout="300000"/>
</beans>
同理。只要將服務暴露 和 發現 都用這種方式 就可以用事務註解了。
如果有更好的辦法,希望大家可以提出來。