第一个springboot项目

New project 选择 spring initializr

第一个springboot项目_第1张图片

填写项目信息

第一个springboot项目_第2张图片

勾选spring web

第一个springboot项目_第3张图片 填写项目

第一个springboot项目_第4张图片

 目录结构

第一个springboot项目_第5张图片

报错,没依赖 

第一个springboot项目_第6张图片

maven mirror要配外网的,配完后再install

第一个springboot项目_第7张图片 

下载完,直接运行 

第一个springboot项目_第8张图片 

这样就是启动好了,访问

 第一个springboot项目_第9张图片

测试例子

package com.example.myspringboot;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

@SpringBootApplication
@Controller
public class MyspringbootApplication {

    public static void main(String[] args) {
        SpringApplication.run(MyspringbootApplication.class, args);
    }

    @RequestMapping(value = "/test")
    @ResponseBody
    //前面两个也可以直接写成@GetMapping("/test")  然后@Controller改成@RestController
    public String test() {
        return "hello!";
    }
}

 第一个springboot项目_第10张图片

你可能感兴趣的:(springboot)