我们需要在多模块应用程序中为spring boot controller项目添加什么父项目

时间:2017-08-16 10:08:46

标签: java spring spring-mvc spring-boot

我创建了一个父项目 并有3个项目 道 服务 3.控制器(弹簧启动项目) 所以在每个项目中我需要添加父标签,这是指父母, 但是对于控制器,已经有一个带有spring-boot-starter-parent

的父标签

那么我该怎么做才能运行这个多模块应用程序?

1 个答案:

答案 0 :(得分:0)

为了解决您当前的问题,我建议您可以将spring parent移到pom.xml中的<dependencyManagement>标记。见下文。

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>1.5.1.RELEASE</version> <!--change to wht u r using-->
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

这样您就可以使用您想要使用的任何父项目。