找不到org.springframework.boot:spring-boot-starter-velocity

时间:2018-08-07 07:55:55

标签: spring velocity

我刚接触弹簧,并尝试在弹簧靴中使用速度。

这是我的build.gradle

repositories {
    mavenCentral()
}

plugins {
   id 'org.springframework.boot' version '2.0.4.RELEASE'
}

apply plugin: 'java'
apply plugin: 'eclipse-wtp'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'war'

dependencies {
    compile('org.springframework.boot:spring-boot-starter-web')
    compile('org.springframework.boot:spring-boot-starter-velocity')
    runtime('org.springframework.boot:spring-boot-devtools')
    providedRuntime('org.springframework.boot:spring-boot-starter-tomcat')
    testCompile('org.springframework.boot:spring-boot-starter-test')
}

当我通过./gradlew bootRun进行同步时,它返回了以下错误。

> Task :compileJava FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Could not resolve all files for configuration ':compileClasspath'.
> Could not find org.springframework.boot:spring-boot-starter-velocity:.

2 个答案:

答案 0 :(得分:3)

很可能您忘记了包含Spring的依赖管理插件。

apply plugin: 'io.spring.dependency-management'

还要确保已指定要使用的Spring Boot版本:

plugins { id 'org.springframework.boot' version '2.0.4.RELEASE' }

有关更多信息,请参见https://docs.spring.io/spring-boot/docs/2.0.4.RELEASE/gradle-plugin/reference/html/

答案 1 :(得分:3)

Spring Boot 2.0依赖于Spring Framework 5.0。哪个dropped support for Velocity。因此,在Spring Boot 2中,不再支持Velocity。

如果您确实需要Velocity,则必须坚持使用Spring Boot 1.5。如果您可以使用Freemarker或Moustache之类的工具,则最好使用它。