码迷,mamicode.com
首页 > 编程语言 > 详细

springBoot(2)---hello word

时间:2018-04-23 22:49:13      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:str   ase   hello   配置   ext   framework   boot   大量   ring   

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(2)---hello word

标签:str   ase   hello   配置   ext   framework   boot   大量   ring   

原文地址:https://www.cnblogs.com/qdhxhz/p/8486635.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!