问答详情
源自:3-2 Spring Boot 多模块 Spring Boot 项目

多模块运行报错

为什么我照着运行,报错

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

提问者:Danger肉丝 2018-07-22 16:19

个回答

  • 言曌博客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

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