用gradle搭建spring boot專案

鄧會傑發表於2016-09-08

1.建立一個java專案或者建立gradle專案跳過第2步。

2.開啟專案本地目錄,右鍵開啟git命令視窗,執行gradle init,自動生成gradle需要的檔案。

3.編輯build.gradle檔案如下:



apply plugin: 'java'
apply plugin: 'eclipse'


repositories {
  
    jcenter()
}




dependencies {
 
    compile 'org.slf4j:slf4j-api:1.7.12'
compile("org.springframework.boot:spring-boot-starter-web:1.4.0.RELEASE")
    testCompile 'junit:junit:4.12'
}


4.執行gradle eclipse下載依賴ja包

5.從http://projects.spring.io/spring-boot/ 複製SampleController程式碼,執行main方法。


6.看到下圖資訊,說明啟動成功,預設埠8080.


7.簡單的spring boot搭建並啟動完成 

第一次寫,請大家多提建議,謝謝!

相關文章