spring boot構建微服務-通過maven構建專案HelloWorld
1.訪問如下地址來構建基礎專案
地址:http://start.spring.io/
2.具體操作選項如下
a.Generate a:建立一個什麼樣的工程,這裡選擇Maven Project
b.with:通過什麼語言,這裡選擇Java
c.and Spring Boot:這個是選擇spring boot的版本,這裡選擇2.1.1
d.Project Metadata:專案元資料資訊檢視截圖
3.點選Generate Project下載專案壓縮包
4.解壓下載的壓縮包
5.通過IDE匯入專案,這裡使用IntelliJ IDEA,匯入步驟檢視截圖
6.專案結構說明截圖如下
a.src/main/java:程式開發的原碼檔案以及主程式入口
b.src/main/resources:儲存配置及資原始檔
c.src/test/java:程式開發的相關測試程式碼
d.pom.xml:是我們程式的相關依賴,依賴截圖檢視以下截圖
7.建立HelloWorld示例
a.建立包,在父包com.huinongtx.demospringboot上右鍵選擇New->Package
包名:web
b.建立類,在web包上右鍵選擇New->Java Class
類名:HelloWorldControl
類的內容:
package com.huinongtx.demospringboot.web;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* Created by dengdashuai on 2018/12/6.
*/
@RestController
public class HelloWorldControl {
@RequestMapping("/helloworld")
public String index() {
return "Hello World";
}
}
8.在DemospringbootApplication中右鍵執行專案,在瀏覽瀏覽器中訪問http://localhost:8080/helloworld可以檢視結果,當看到輸出"Hello World"表示整個專案已配置構建完成。