spring boot 依赖排除

Posted sylg

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 依赖排除相关的知识,希望对你有一定的参考价值。

通过spring boot的起步依赖和自动配置,可以更加快速,便捷的开发spring应用程序。

起步依赖:

  1.我们不需要指定版本号,起步依赖本身的版本是由正在使用的spring boot的版本来决定的,而起步依赖则会决定他们引入的传递依赖版本。

  2.依赖排除:在Maven中可以使用<exclusions>元素来排除传递依赖

  

<dependency>
    <groupId>org.springframewok.boot</groupId>    
    <artifactId>spring-boot-starter-web</artifactId>    
    <exclusions>
        <exclusion>
            <groupId>com.faserxml.jackson.core<groupId>
        <exclusion>
    </exclusions>
</dependency>

  另一方面,也许项目需要jackson,但你需要用另一个版本的jackson来进行构建,而不是web起步依赖里的那个。假设web起步依赖引用了Jackson2.3.4,但是你需要使用2.4.3.在maven里,你可以直接在pom。xml中表达述求,就像这样:

<dependency>
    <groupId>org.springframewok.boot</groupId>    
    <artifactId>spring-boot-starter-web</artifactId>    
    <version>2.4.3</version>
</dependency>

 

以上是关于spring boot 依赖排除的主要内容,如果未能解决你的问题,请参考以下文章

从 Gradle 中的 Spring Boot 中排除 Tomcat 依赖项

如何从 spring-boot-starter-parent 中排除特定依赖项

Spring Boot打jar包,排除lombok等scope=provided的依赖

摇篮 | Spring boot 依赖不排除

如何在gradle中排除来自spring boot的依赖项

Tomcat的Maven依赖排除不起作用