Springboot(一)——Springboot快速入門
阿新 • • 發佈:2021-06-28
第一個springboot程式Hello,World
我們將學習如何快速的建立一個Spring Boot應用,並且實現一個簡單的Http請求處理。通過這個例子對Spring Boot有一個初步的瞭解,並體驗其結構簡單、開發快速的特性。
我的環境準備:
- java11
- Maven-3.6.3
- SpringBoot 2.x 最新版
開發工具:
- IDEA
一、建立Springboot專案
建議把服務連線換成阿里雲的:https://start.aliyun.com/
二、新增SpringWeb框架,再點選完成
三、可以選擇刪除多餘檔案
四、等待專案下載完成
五、springboot主啟動類,springboot從這裡開始跑
六、新建controller包
七、在controller包下新建HelloWorld類
package com.study.springboot01helloworld.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloWorld { @RequestMapping("/hello") public String HelloWorld01(){ return "HelloWorld"; } }
八、在Springboot主啟動類啟動專案
九、專案啟動完成
1、啟動完成提示
2、在網頁中輸入localhost:8080
3、在網頁中輸入localhost:8080/hello