2017-10-14 97 views
0

由於我在通過視頻源訪問的雲中的虛擬機上運行,​​因此我無法複製和粘貼,所以出現完整的錯誤。這是全新安裝的ubuntu,我只安裝了JDK,沒有任何東西如果其他的設置需要做 https://imgur.com/a/egJ3dSpring應用上的NoClassDefFoundError

其他未察覺這是一個春天啓動的應用程序。 我的build.gradle

group 'com.haughon.daniel' 
version '1.0-SNAPSHOT' 



buildscript { 
repositories{ 
    mavenCentral() 
} 
dependencies { 
    classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.5.2.RELEASE' 
} 
} 

// Apply the Spring Boot plugin 
apply plugin: 'spring-boot' 

// Apply the Java plugin (expects src/main/java to be source folder) 
apply plugin: 'java' 
apply plugin: 'idea' 

// Specify the location where our dependencies will be found 
repositories { 
mavenCentral() 
} 
jar { 
    manifest { 
    attributes 'Main-Class': 'haughton.dvdstore.Application' 
    attributes 'addClasspath': 'true' 

} 
} 

// Specify dependencies 
    dependencies { 

compile 'org.hashids:hashids:1.0.1' 
compile 'org.springframework.boot:spring-boot-starter-thymeleaf' 
compile 'org.springframework:spring-orm:4.3.7.RELEASE' 
compile 'org.hibernate:hibernate-core:5.2.9.Final' 
compile 'org.hibernate:hibernate-entitymanager:5.0.6.Final' 
compile 'org.apache.tomcat:tomcat-dbcp:8.0.30' 
compile 'org.springframework.boot:spring-boot-starter-security' 
compile('org.thymeleaf.extras:thymeleaf-extras-springsecurity4') 
//compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity:3.0.2.RELEASE' 
compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '1.11.1.RELEASE' 
// https://mvnrepository.com/artifact/com.google.code.gson/gson 
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.0' 
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core 
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.8.8' 

runtime 'com.h2database:h2' 
runtime 'javax.transaction:jta:1.1' 
runtime 'org.aspectj:aspectjweaver:1.8.7' 
testCompile 'org.springframework.boot:spring-boot-starter-test' 
} 

回答

相關問題