gpt4 book ai didi

带有 Gradle 的 Spring Boot 缺少 Thymeleaf 的依赖项

转载 作者:行者123 更新时间:2023-12-01 00:38:10 25 4
gpt4 key购买 nike

我正在尝试使用 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 页面,我希望在浏览器中看到“测试”。

enter image description here

最佳答案

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

关于带有 Gradle 的 Spring Boot 缺少 Thymeleaf 的依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39042603/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com