Spring-boot初始化建立(一)
阿新 • • 發佈:2018-12-10
這裡使用idea來快速建立一個spring-boot的專案,來體驗下idea之美。
new Project.
選擇Spring Initializr 後開始選擇包名。
這裡勾選Web
到這裡就基本完成建立了。
然後找到啟動檔案,直接啟動就行。
啟動後,可以看到控制檯。
並且可以輸入http://localhost:8080/ 看到報錯頁面,這裡報錯是因為沒有找到頁面,不過可以確定web專案確實已經搭建起來了。
這裡隨便建立一個控制器。
package com.sun.demo2.controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @GetMapping(value = "hello") public String Hello(){ return "hello world"; } }
執行spring-boot 在url 輸入 http://localhost:8080/hello
看到的效果便是。