您好,登錄后才能下訂單哦!
Gradle中如何構(gòu)建spring-boot-vuejs,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
在Github中找到一個合適的項(xiàng)目spring-boot-vuejs,下載準(zhǔn)備構(gòu)建。但是原項(xiàng)目只有maven配置,而我想用gradle構(gòu)建。上網(wǎng)查到gradle自帶轉(zhuǎn)換POM的功能,雖然這還是個孵化中的特性:
gradle init --type pom
直接在項(xiàng)目根目錄執(zhí)行上面的命令,會自動生成gradle的相關(guān)文件。
之后,我直接使用系統(tǒng)命令構(gòu)建,不是使用生成的gradlew,然后運(yùn)行生成的jar包:
gradle build java -jar ./backend/build/libs/backend-0.0.1-SNAPSHOT.jar
未能成功運(yùn)行項(xiàng)目:
Picked up _JAVA_OPTIONS: -Dawt.useSystemAAFontSettings=gasp
build/libs/backend-0.0.1-SNAPSHOT.jar中沒有主清單屬性
手動修改backend項(xiàng)目的build.gradle:
plugins { id 'org.springframework.boot' version '2.1.6.RELEASE' id 'java' } apply plugin: 'io.spring.dependency-management' repositories { mavenCentral() } jar { baseName = 'spring-boot-vuejs' version = '0.1.0' } sourceCompatibility = 1.8 targetCompatibility = 1.8 dependencies { compile 'org.springframework.boot:spring-boot-starter-actuator' compile 'org.springframework.boot:spring-boot-starter-web' compile 'org.springframework.boot:spring-boot-devtools' compile 'org.springframework.boot:spring-boot-starter-data-jpa' compile 'com.h3database:h3:1.4.199' compile 'org.apache.tomcat:tomcat-jdbc:9.0.21' compile 'org.postgresql:postgresql:42.2.5' compile 'org.springframework.boot:spring-boot-starter-security' testCompile 'org.springframework.boot:spring-boot-starter-test' testCompile 'io.rest-assured:rest-assured:4.0.0' testCompile 'org.springframework.security:spring-security-test' }
再次構(gòu)建還是失?。?/p>
ydx@ydx-PC:$ gradle build
Picked up _JAVA_OPTIONS: -Dawt.useSystemAAFontSettings=gasp> Task :backend:compileTestJava FAILED
/home/ydx/Documents/Project/spring_boot/spring-boot-vuejs-master/backend/src/test/java/de/jonashackt/springbootvuejs/controller/BackendControllerTest.java:59: 錯誤: 無法訪問TypeRef
.body().as(Long.class);
^
找不到io.restassured.common.mapper.TypeRef的類文件
1 個錯誤FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':backend:compileTestJava'.
> Compilation failed; see the compiler error output for details.
先不管后端,搗鼓一下前端項(xiàng)目。因?yàn)椴粫胓radle調(diào)用npm命令,所以直接執(zhí)行:
npm install
結(jié)果node-sass沒有安裝成功-_-||
只好手動安裝:
cnpm install --save-dev node-sass
成功后執(zhí)行:
npm run serve
O(∩_∩)O哈哈哈~,成功啟動。
當(dāng)然,只是前端啟動了,后端還是全身不遂%>_<%
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。