Springboot+Maven

Posted 小白测试

tags:

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

Spingboot框架在maven项目中的引用。直接在pom.xml文件中添加上一下内容。

注意事项:pom.xml文件中只能有一组<parent>标签

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
</parent>
<!--添加依赖-->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>

 

以上是关于Springboot+Maven的主要内容,如果未能解决你的问题,请参考以下文章