想将其他模块的 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?的详细内容,更多请关注慧达安全导航其它相关文章!

点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿
发表
评论
返回
顶部