SpringBoot学习:pom

Posted first001

tags:

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

提聘没上,还得自身硬,到哪都能换饭吃,买个电脑开始学习吧。

pom的学习:这篇挺好的  https://www.cnblogs.com/wkrbky/p/6353285.html,基本内容都有了, 但是不够全面,可以再参考其他

scope=import说的略粗糙,这里补充下:

          1.只能用于<dependencyManagement

          2. 必须<type>pom</type>

          3.maven2.0.9版本以后支持

          4.作用:将此artifactId对应的pom中的<dependencyManagement>,全部引入到此处。

          5.例子:

<dependencyManagement> 
      <dependencies> 
             <dependency> 
                     <groupId>groupA</groupId> 
                     <artifactId>artifactA</artifactId> 
                     <version>1.0</version> 
                     <type>pom</type> 
                     <scope>import</scope> 
              </dependency> 
       </dependencies> 
</dependencyManagement> 

以上是关于SpringBoot学习:pom的主要内容,如果未能解决你的问题,请参考以下文章

超详细的springBoot学习教程,springboot学习看这篇就够了

springBoot学习笔记初识springBoot

SpringBoot学习笔记——自动配置原理

springboot学习目录

springboot项目怎么调用深度算法

Springboot学习笔记