springBoot---hello word
Posted qdhxhz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springBoot---hello word相关的知识,希望对你有一定的参考价值。
springBoot---hello world
学习springBoot,大家都习惯从hello world,上篇主要是通过一个小案例,来整体理解springBoot的运行思路。对springBoot有个宏观认识。这篇开始真正学习springboot
Hello World
1. pom.xml文件
1.1. 设置spring boot的parent
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.2.RELEASE</version> </parent>
说明:Spring boot的项目必须要将parent设置为spring boot的parent,该parent包含了大量默认的配置,大大简化了我们的开发。
1.2导入spring boot的web支持
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId>
</dependency>
1.3 添加Spring boot的插件
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin>
以上是关于springBoot---hello word的主要内容,如果未能解决你的问题,请参考以下文章