Spring Cloud Alibaba中如何集中管理Common模块的Entity、Mapper和Service?(模块.管理.Alibaba.Cloud.Spring...)

wufei123 发布于 2025-01-09 阅读(21)

spring cloud alibaba中如何集中管理common模块的entity、mapper和service?

想将其他模块的 Entity、Mapper 和 Service 集中到 Common 模块中?

使用 Spring Cloud Alibaba 2021.0.1 Spring Boot 2.6.4,如何让其他业务模块的 Entity、Mapper 和 Service 都集中管理在 Common 模块中?

问题的尝试和解决

  • 扫描 Common 模块中的包会报错:org.springframework.beans.factory.BeanCreationException: ...
  • 添加 @ComponentScan 扫描所有包也会报错:org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean...

正确的配置

根据描述的情况,在 merchant 模块和 supply 模块中,配置如下:

  • spring 包扫描:scanBasePackages = "com.quanneng"
  • mapper 接口配置:@MapperScan("com.quanneng.mapper")
  • swagger 接口扫描配置:按照swagger的配置

此外,统一异常处理只允许存在于一个模块中。

其他建议

将 Common 模块编写成一个 Spring-Boot-Starter 也是一个可行的方案,这样可以避免包扫描问题。

以上就是Spring Cloud Alibaba中如何集中管理Common模块的Entity、Mapper和Service?的详细内容,更多请关注知识资源分享宝库其它相关文章!

标签:  模块 管理 Alibaba 

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。