之因此寫這個是由於如今官方推薦雲建立:
java
因此標註一下maven project,建立後,如何導入spring boot。web
1.步驟一spring
在pom.xml 中加入:shell
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies>
若是你沒有設置自動更新jar 包的話。tomcat
請在項目根目錄點擊右鍵,選擇maven,而後reimport。maven
2.步驟二
導入spring boot 打包插件。spring-boot
<build> <plugins> <!-- 此插件就是打包spring boot應用的 --> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build>
以後你再maven中運行:
微服務
而後在控制檯查看jar 包位置:ui
如今咱們知道他是一個jar包,那麼咱們是能夠用命令行直接運行的。插件
java -jar xxx
之因此能夠運行是由於spring boot加入了一個微型的tomcat,微服務的思想哈。