美文网首页
SpringBoot的pom文件

SpringBoot的pom文件

作者: 拉提娜的爸爸 | 来源:发表于2019-08-17 13:02 被阅读0次

1、父项目

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.6.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

2、starter启动器

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>

spring-boot-starter:SpringBoot场景启动器,帮我们导入了web项目正常运行所依赖的组件
springboot讲所有的功能场景都抽取出来,做成一个个starter启动器,只需在项目里引入这些starter,相关场景的所有依赖都会导入进来,用什么功能,就导入什么场景的启动器依赖。
例如:

image.png

相关文章

网友评论

      本文标题:SpringBoot的pom文件

      本文链接:https://www.haomeiwen.com/subject/hjwhsctx.html