快速搭建一個SpringBoot應用
阿新 • • 發佈:2022-03-30
一、需求
搭建SpringBoot工程,定義HelloController.hello()方法,返回"hello world~"。
二、步驟
2.1、建立Maven專案
填寫專案名,儲存位置,及座標
點選Finish,完成後,專案結構如下
2.2、匯入SpringBoot起步依賴
在pom.xml檔案中匯入相關依賴
<!-- SpringBoot工程需要繼承父工程 --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.3.10.RELEASE</version> </parent> <dependencies> <!-- web開發的起步依賴:場景啟動器依賴--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies>
2.3、編寫啟動類
/** * 引導類(啟動類)SpringBoot專案的入口 */ @SpringBootApplication public class HelloApplication { public static void main(String[] args) { SpringApplication.run(HelloApplication.class, args); } }
2.4、定義HelloController類編寫請求方法
package com.it.learn.controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @GetMapping("hello") public String hello(){ return "hello world~"; } }
2.5、啟動測試
找到啟動類,執行main方法
看到如下,代表成功
在瀏覽器訪問 http://localhost:8080/hello,可以看到,返回資訊