多模块运行报错

来源:3-2 Spring Boot 多模块 Spring Boot 项目

Danger肉丝

2018-07-22 16:19

为什么我照着运行,报错

Parameter 0 of method userFindAll in web.config.RouterFunctionConfiguration required a bean of type 'UserRepository' that could not found.

写回答 关注

2回答

  • 言曌博客liuyanzhao_com
    2018-07-29 17:46:16

    需要需要依赖某个模块,需要引入它

    比如 service 模块依赖 dao 模块,需要在 service 里添加

    <dependencies>
        <dependency>
            <groupId>com.liuyanzhao.sell</groupId>
            <artifactId>sell-dao</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
    </dependencies>
  • 腼腆的老黄
    2018-07-22 21:44:51

    目测是依赖没依赖好  自己看看依赖

Spring Boot 2.0深度实践-初遇Spring Boot

Spring Boot 2.x/Web Flux/多模块化项目实践

75471 学习 · 212 问题

查看课程

相似问题