步驟:IDE點擊 NEW -> Maven Project -> Next
在filter中輸入web或webapp 選擇 maven-archetype-webapp
設置包名(Group Id)與項目名(Artifact Id),點擊finish完成項目建立
web
1.pom.xml中添加web支持模塊spring
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.9.RELEASE</version> </parent> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
2.編寫Spring Boot啓動類
3.編寫HelloController
4.運行主程序測試
在main主函數入口右鍵Run as,選擇Java Applicationapp
maven運行Spring Boot:選擇項目 Run as -> Maven Build
webapp
訪問項目不用添加項目名
如:http://localhost:8080/hello
不然會出現Web Error Pagemaven