Spring boot依赖版本管理

依赖版本管理

Pom文件
依赖父项目

<parent>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-parentartifactId>
    <version>1.5.9.RELEASEversion>
parent>

Parent的父项目
点击,进入

<parent>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-dependenciesartifactId>
    <version>1.5.9.RELEASEversion>
    <relativePath>../../spring-boot-dependenciesrelativePath>
parent>

spring-boot-dependencies

管理Spring boot应用里面,所有依赖版本
点击,进入
Spring boot依赖版本管理_第1张图片
这里,配置的所有默认版本
导入依赖默认,不需要写版本信息
都在这里进行了声明

如果,dependencies依赖管理没有
需要添加版本信息

你可能感兴趣的:(————Spring,Boot)