一分鐘搭建Spring Boot

1.首先你的電腦須要安裝jdk、Apache Maven、Intellij IDEAhtml

2.新建項目  (敲重點,有的同窗有沒有Spring Initializr 這個請到本文章後面看安裝步驟web

 

3.選擇基本條件spring

 

 

 

添加HelloCtrl類瀏覽器

添加以下代碼app

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller//這是一個控制器
public class HelloCtrl
{
    @RequestMapping("/")//將地址映射到 / 即訪問http://localhost:8080 就能夠進入這個方法
    @ResponseBody//返回數據,若是不添加該註解將在resources/templates下尋找與之對應的html模版
    public String hello()
    {
        return "hello spring boot";
    }
}

4.測試程序測試

打開瀏覽器,http://localhost:8080spa

出現hello spring boot字樣則成功code

 

 --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------htm

沒有Spring Initializrblog

1.【file】->【Settings】->【Plugins】

相關文章
相關標籤/搜索