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

idea新建springboot项目

时间:2019-12-31 15:55:06      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:ret   完成   ati   work   mapping   oca   res   文件   info   

一、新建springboot项目

点击 文件--New--项目

技术图片

 

 

 选择Spring Initializr

技术图片

 

 

 下一步

技术图片

 

 按照上面的或者直接下一步

技术图片

 

 下一步

技术图片

 

 点击完成

 

 

 二、启动项目

建立一个类

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class Test {

    @RequestMapping("/hello")
    public String helloSpringBoot() {
        return "Hello SpringBoot Project.";
    }
}

点击绿色箭头运行

技术图片

 

 打开网页输入http://localhost:8080/hello

技术图片

idea新建springboot项目

标签:ret   完成   ati   work   mapping   oca   res   文件   info   

原文地址:https://www.cnblogs.com/rumian/p/12124817.html

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