Spring boot 學習之 Hello World
阿新 • • 發佈:2019-02-12
使用IDE新建maven專案,如果使用eclipse,則選擇jar包方式(不選擇war包方式)
必須要引入繼承springboot-parent包,它幫我們實現了很多jar的依賴管理(這個在
<dependencies></dependencies>
標籤外):<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>
pom檔案匯入springboot-web依賴即可,springboot預設整合spring mvc:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
以上操作完成後,既可編寫HelloWorld測試類:
package
瀏覽器訪問結果:
最基本的Springboot完成