SpringBoot專案搭建

瑩醬y發表於2020-11-29

1、我使用的工具是idea,所以第一步直接在之前的專案上右鍵新建一個model,如下操作:
在這裡插入圖片描述
2、
在這裡插入圖片描述

3、建專案需要網路,而且網路一定要好,否則可能建立不成功
在這裡插入圖片描述
4、
在這裡插入圖片描述
在這裡插入圖片描述
在這裡插入圖片描述
5、搭建完成,測試一下

在這裡插入圖片描述

package com.zking.springboot01.controller;

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

import java.util.HashMap;
import java.util.Map;

@RestController
public class HelloController {
    @RequestMapping("/hello1")
    public String hello1(){
        return "hello springboot!!";
    }

    @RequestMapping("/say1")
    public String say1(String name){
        return name + "say hello springboot halo";
    }

    @RequestMapping("/say2{name}")
    public String say2(@PathVariable("name") String name){
        return name +"say hello springboot halo";
    }

    @RequestMapping("/json")
    public Map retuenJson(){
        Map map=new HashMap();
            map.put("sucess",true);
            map.put("msg","恭喜中獎");
            return map;

    }

}

執行結果:
在這裡插入圖片描述
在這裡插入圖片描述

在這裡插入圖片描述
在這裡插入圖片描述
在這裡插入圖片描述
完畢!搭建成功!

相關文章