6.1 產生一個 Gradle 專案
我們用 Eclipse IDE 依據下列步驟,產生一個 Springboot 專案。
(1). 於 Eclipse IDE 選 [File]->[New]->[Spring Satarter Project]
(2). 加入 Springboot Plugin 相關信息到專案裡,這Plugin將允許我們封裝應用程式轉換成 jar 形式或 war 壓縮檔,進而執行程式。
(3). 於專案裡設定相依,選擇 Web相依及 mongoDB 相依
- The spring-boot-starter-web dependency provides the dependencies of a web application.
- The spring-data-mongodb dependency provides integration with the MongoDB document database.
(4). 專案相關的 build.gradle 列示如下:
buildscript
{
ext
{
springBootVersion = '1.4.0.RELEASE'
}
repositories
{
mavenCentral()
}
dependencies
{
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'spring-boot'
jar
{
baseName = 'microservice'
version = '0.0.1-SNAPSHOT'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories
{
mavenCentral()
}
dependencies
{
compile('org.springframework.boot:spring-boot-starter-data-mongodb')
compile('org.springframework.boot:spring-boot-starter-web')
testCompile('org.springframework.boot:spring-boot-starter-test')
}