我對gradle很新,希望爲REST服務創建構建文件。在閱讀Gradle主頁和其他一些頁面的一些介紹之後,我使用命令gradle init --type=java-project
開始了一個新項目,因爲我的服務是基於Java的。該項目的結構已創建,我想將我的.class
文件插入到目錄中。這是我的第一個問題:我不知道這種項目的適當結構。在此之後,我將重點放在我添加的依賴關係上。只要我想建立我的項目,就會發生一個錯誤,這與使用球衣作爲技術有關。如果我使用eclipse編譯我的服務,那麼它工作得很好,所以我的代碼工作。爲REST-Web服務創建Gradle文件
所以我的2個問題是:
如何建立正確的文件結構?
如何使用的Servlet/WAR編譯
這裏解決這個問題是我的項目的Eclipse中的結構:
RestWebService
|--Java Resources
| |--src
| |--com.name.restproject.rest
| | |--WebController.java //contains the jersey REST service
| |--com.name.restproject.service
| |--ServiceUtil.java //contains some util methods
|--Libraries
| |--Apache Tomcat v7
| |--asm-3.3.1.jar
| |--EAR Libraries
| |--gson-2.5.jar
| |--jersey-bundle-1.14.jar
| |--JRE SYSTEM Library
| |--json-20151123.jar
| |--Web App Libraries
|--JavaScript Resources
|--build
|--WebContent
|--META-INF
| |--MANIFEST.MF
|--WEB-INF
|--lib
|--fileName.properties //File with Data for ServiceUtil.java
|--configFile.xml //File with Confc for ServiceUtil.java
|--web.xml //Config for the REST paths
我沒有計劃在何處放置WEB-INF目錄中的兩個文件。我已經放在projectfolder /src/main/java/com/name/restproject
這裏下的結構是該項目的文件的gradle
的build.gradle
apply plugin: 'java'
apply plugin: 'war'
// In this section you declare where to find the dependencies of your project
repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
mavenCentral()
}
// In this section you declare the dependencies for your production and test code
dependencies {
// The production code uses the SLF4J logging API at compile time
compile group: 'com.google.code.gson', name: 'gson-parent', version: '2.6'
compile group: 'asm', name: 'asm-parent', version: '3.3.1'
compile group: 'com.sun.jersey.glassfish.v3.osgi', name: 'jersey-gf-bundle', version: '1.1.4'
compile group: 'org.json', name: 'json', version: '20151123'
// Declare the dependency for your favourite test framework you want to use in your tests.
// TestNG is also supported by the Gradle Test task. Just change the
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
// 'test.useTestNG()' to your build script.
testCompile 'junit:junit:4.12'
}