Spring Boot开启的2种方式详解

网友投稿 282 2023-01-07


Spring Boot开启的2种方式详解

Spring Boot依赖

使用Spring Boot很简单,先添加基础依赖包,有以下两种方式

1. 继承spring-boot-starter-parent项目

org.springframework.boot

spring-boot-starter-parent

1.5.6.RELEASE

2. 导入spring-boot-dependencies项目依赖

org.springframework.boot

spring-boot-dependencies

1.5.6.RELEASE

pom

import

Spring Boot依赖注意点

1. 属性覆盖只对继承有效

http://

This only works if your Maven project inherits (directly or indirectly) from spring-boot-dependencies. If you have added sOygthHpring-boot-dependencies in your own dependencyManagement section withimportyou have to redefine the artifact yourself instead of overriding the property.

Spring Boot依赖包里面的组件的版本都是和当前Spring Boot绑定的,如果要修改里面组件的版本,只需要添加如下属性覆盖即可,但这种方式只对继承有效,导入的方式无效。

1.7.25

如果导入的方式要实现版本的升级,达到上面的效果,这样也可以做到,把要升级的组件依赖放到Spring Boot之前。

org.springframework.data

spring-data-releasetrain

Fowler-SR2

import

pom

org.springframework.boot

spring-boot-dependencies

1.5.6.RELEASE

pom

import

Each Spring Boot release is designed and tested against a specific set of third-party dependencies. Overriding versions may cause compatibility issues.

需要注意,要修改Spring Boot的依赖组件版本可能会造成不兼容的问题。

2. 资源文件过滤问题

使用继承Spring Boot时,如果要使用Maven resource filter过滤资源文件时,资源文件里面的占位符为了使${}和Spring Boot区别开来,此时要用@...@包起来,不然无效。另外,@...@占位符在yaml文件编辑器中编译报错,所以使用继承方式有诸多问题,坑要慢慢趟。


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:总线接口测试(总线测试技术)
下一篇:通过spring boot 设置tomcat解决 post参数限制问题
相关文章

 发表评论

暂时没有评论,来抢沙发吧~