带有Gradle的SpringBoot缺少对Thymeleaf的依赖

时间:2016-08-19 15:19:26

标签: spring thymeleaf

我正在尝试使用Thymeleaf作为我的模板引擎来设置一个非常简单的Springboot应用程序。我是%100肯定我的@Controller工作正常,但是当我尝试访问默认的URL(“/”)时,我得到了可怕的“Whitelabel”错误页面。

下面是我的gradle.build文件...

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 = 'masterSpringMvc'
     version = '0.0.1-SNAPSHOT'
}

sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories { mavenCentral() }

 dependencies {
     compile('org.springframework.boot:spring-boot-starter-web')
     compile('org.springframework.boot:spring-boot-starter-thymeleaf')
     testCompile('org.springframework.boot:spring-boot-starter-test')
 }

eclipse {
    classpath {
         containers.remove('org.eclipse.jdt.launching.JRE_CONTAINER')
         containers 'org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8'
}

非常确定我的设置正确,所以我继续运行以下构建步骤......

enter image description here

在此之后,我希望在我的“项目和外部依赖关系”中看到 spring-boot-starter-thymeleaf.jar ,但它不存在。我对Gradle很新,并且假设构建会引入这个必需的依赖项,然后在启动我的应用程序时“启用”它。有什么线索我可能在这里做错了吗?

enter image description here

这是我的.html页面,我希望在浏览器中显示“Test”。

enter image description here

1 个答案:

答案 0 :(得分:2)

您需要更新依赖项。 在包资源管理器上 - >右键单击您的项目 - > Gradle - >启用依赖关系管理 - >再次右键单击它 - >刷新依赖关系