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

搭建一个入门springboot工程

时间:2019-06-26 01:04:00      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:back   ring   app   mamicode   group   mave   config   head   pen   

springboot工程搭建(入门案例)

第一步:创建maven工程

技术图片

第二步:设置项目信息

技术图片

第三步:默认项目名称,不用改动(第二步已填写)

技术图片

 

 第三步:在pom.xml中导入依赖

SpringBoot要求,项目要继承SpringBoot的起步依赖spring-boot-starter-parent

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.1.RELEASE</version>
</parent>

 

SpringBoot要集成SpringMVC进行Controller的开发,所以项目要导入web的启动依赖

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>

 


 

第四步:编写SpringBoot引导类

 1 import org.springframework.boot.SpringApplication;
 2 importorg.springframework.boot.autoconfigure.SpringBootApplication;
 3 
 4 @SpringBootApplication
 5 public class MySpringBootApplication {
 6 
 7     public static void main(String[] args) {
 8         SpringApplication.run(MySpringBootApplication.class);
 9     }
10 
11 }

第五步:编写Controller

 1 import org.springframework.stereotype.Controller;
 2 import org.springframework.web.bind.annotation.RequestMapping;
 3 import org.springframework.web.bind.annotation.ResponseBody;
 4 
 5 @Controller
 6 public class StartController {
 7     
 8     @RequestMapping("/hello")
 9     @ResponseBody
10     public String init(){
11         return "hi,springboot!";
12     }
13     
14 }

 

 第六步:启动MySpringBootApplication.java的主方法(即启动项目)

技术图片

项目启动完成........开心

技术图片

 测试结果如下:

 技术图片

完成项目搭建!!!!

 

搭建一个入门springboot工程

标签:back   ring   app   mamicode   group   mave   config   head   pen   

原文地址:https://www.cnblogs.com/Sarah-Strawberry/p/11087324.html

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