teaey / spring-boot-starter-dubbo

Dubbo Spring Boot 工程
https://github.com/dubbo/dubbo-spring-boot-starter
Apache License 2.0
174 stars 435 forks source link

集成了mybatis后 不能注册进注册中心,去掉和数据库相关的内容后使用正常 #307

Open hjx601496320 opened 7 years ago

hjx601496320 commented 7 years ago

有人碰到过么?

zip01 commented 7 years ago

@hjx601496320 我也遇到了,然后我将需要提供服务的类排除在springboot扫描包之外就可以了

hjx601496320 commented 7 years ago

哦哦 好的 谢谢你。 不是 @SpringBootApplication(scanBasePackages = "com..") 这样呢? 但是这样的话 我的一些需要配spring 管理的类不是就不能被spring扫描并自动添加进spring容器中了呢?

hejiaxuan7@sina.com

发件人: pudongliang 发送时间: 2017-08-22 09:51 收件人: teaey/spring-boot-starter-dubbo 抄送: 何嘉旋; Mention 主题: Re: [teaey/spring-boot-starter-dubbo] 集成了mybatis后 不能注册进注册中心,去掉和数据库相关的内容后使用正常 (#307) @hjx601496320 我也遇到了,然后我将需要提供服务的类排除在springboot扫描包之外就可以了 — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.

zip01 commented 7 years ago

@hjx601496320 我试了下,提供rpc服务的包结构需要与springboot扫描的包结构错开。我的接口包名与spring扫描的报名开头相同也导致注册不上。

hjx601496320 commented 7 years ago

哦哦 好吧 。我现在用的方式就是 比较原始的 引用的xml配置文件来弄的。

hejiaxuan7@sina.com

发件人: pudongliang 发送时间: 2017-08-22 11:22 收件人: teaey/spring-boot-starter-dubbo 抄送: 何嘉旋; Mention 主题: Re: [teaey/spring-boot-starter-dubbo] 集成了mybatis后 不能注册进注册中心,去掉和数据库相关的内容后使用正常 (#307) @hjx601496320 我试了下,提供rpc服务的包结构需要与springboot扫描的包结构错开。我的接口包名与spring扫描的报名开头相同也导致注册不上。 — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.

baigod commented 7 years ago

包扫描要错开

shenzhuan commented 7 years ago

http://git.oschina.net/catshen/zscat_sw 这个项目 好像 不错开 也没有问题的啊

yizhixiaotaozi commented 7 years ago

使用@Transactional注解后,service无法暴露出去