带有 Gradle 的 Thymeleaf 模板解析器前缀
Posted
技术标签:
【中文标题】带有 Gradle 的 Thymeleaf 模板解析器前缀【英文标题】:Thymeleaf Template Resolver prefix with Gradle 【发布时间】:2017-12-09 05:12:00 【问题描述】:我正在尝试在 AWS Elastic Beanstalk 中部署使用 Gradle 构建的 Spring Boot 应用程序,但我不断收到此错误:
2017-07-05 13:47:17.913 ERROR 2804 --- [nio-5000-exec-7] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//articulos/index.html]")] with root cause
java.io.FileNotFoundException: class path resource [templates//articulos/index.html] cannot be opened because it does not exist
at org.springframework.core.io.ClassPathResource.getInputStream(ClassPathResource.java:172) ~[spring-core-4.3.7.RELEASE.jar!/:4.3.7.RELEASE]
at org.thymeleaf.spring4.templateresource.SpringResourceTemplateResource.reader(SpringResourceTemplateResource.java:103) ~[thymeleaf-spring4-3.0.3.RELEASE.jar!/:3.0.3.RELEASE]
...
这是我的配置类:
@Bean
public ViewResolver viewResolver()
ThymeleafViewResolver resolver = new ThymeleafViewResolver();
resolver.setTemplateEngine(templateEngine());
resolver.setCharacterEncoding("UTF-8");
return resolver;
private TemplateEngine templateEngine()
SpringTemplateEngine engine = new SpringTemplateEngine();
engine.addDialect(new Java8TimeDialect());
engine.addTemplateResolver(templateResolver());
engine.getConfiguration();
return engine;
@Bean
public SpringResourceTemplateResolver templateResolver()
SpringResourceTemplateResolver templateResolver = new SpringResourceTemplateResolver();
templateResolver.setCacheable(false);
templateResolver.setPrefix("classpath:/templates/");
templateResolver.setSuffix(".html");
return templateResolver;
@Bean
public UrlTemplateResolver urlTemplateResolver()
return new UrlTemplateResolver();
生成的文件夹结构如下:
我尝试将 TemplateResolver 的前缀更改为:
/模板 模板 模板/ /模板/ 类路径:模板/ 类路径:/templates/我的应用程序打包在一个 WAR 文件中,具有以下 Gradle 配置:
buildscript
ext
springBootVersion = '1.5.2.RELEASE'
repositories
mavenCentral()
dependencies
classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion")
apply plugin: 'java'
apply plugin: 'eclipse-wtp'
apply plugin: 'org.springframework.boot'
apply plugin: 'war'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories
mavenCentral()
configurations
providedRuntime
dependencies
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('org.flywaydb:flyway-core')
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
compile ("org.thymeleaf.extras:thymeleaf-extras-springsecurity4:3.0.0.RELEASE")
compile ("org.thymeleaf.extras:thymeleaf-extras-java8time:3.0.0.RELEASE")
compile ("io.github.jpenren:thymeleaf-spring-data-dialect:3.1.1")
compile('org.springframework.boot:spring-boot-starter-web')
runtime('org.springframework.boot:spring-boot-devtools')
runtime('mysql:mysql-connector-java')
providedRuntime('org.springframework.boot:spring-boot-starter-tomcat')
testCompile('org.springframework.boot:spring-boot-starter-test')
ext["thymeleaf.version"] = "3.0.3.RELEASE"
这是解压后的 WAR 文件的树输出,文件夹“模板”似乎在类路径中:
.
|-- META-INF
|-- WEB-INF
| |-- classes
| | |-- ar
| | | `-- com
| | | `-- reweb
| | | `-- data
| | | `-- repository
| | |-- db
| | | `-- migration
| | |-- static
| | | |-- bootstrap
| | | | |-- css
| | | | |-- fonts
| | | | `-- js
| | | |-- css
| | | |-- img
| | | |-- jquery
| | | | `-- ui
| | | | |-- css
| | | | `-- js
| | | `-- js
| | | `-- articulos
| | `-- templates
| | |-- articulos
| | | |-- aplicaciones
没有运气,有什么想法吗?谢谢
【问题讨论】:
你没有发布错误,还是我遗漏了什么? 对不起,我忘了,补充! @g00glen00b 你能显示一个用于索引页面的控制器吗?错误消息templates//articulos/index.html
中有双斜线,这很奇怪。
我的控制器将“articulos/index”作为字符串返回
我也会尝试classpath:templates
和/或classpath:/templates
。否则,你能做一个显示问题的小项目吗?
【参考方案1】:
需要注意的一点是,如果 Thymeleaf 没有找到模板,则会引发不同措辞的异常:
org.thymeleaf.exceptions.TemplateInputException:错误解决 模板“articulos/index”,模板可能不存在或可能不存在 任何已配置的模板解析器均可访问
FWIW,您的代码在我的机器上运行良好,稍作修改(将 TemplateEngine 转换为 SpringTemplateEngine)
这让我认为您的问题出在模板本身 - 也许您正在动态包含一个片段(通过th:replace
ot th:include
),它试图链接回“/articulos/index.html”并且无法正确解析。
我会尝试用最简单的版本替换 index.html,如下所示:
<!DOCTYPE html>
<html>
<body>
<div>
Hello world!
</div>
</body>
</html>
看看它是否被加载。
如果可行,请尝试仔细检查模板的语法,尤其是双斜杠 (//),因为这看起来很可疑。
【讨论】:
请注意抛出的异常是 java.io.FileNotFoundException 并且消息指出文件不存在,我将尝试使用 SprintTemplateEngine以上是关于带有 Gradle 的 Thymeleaf 模板解析器前缀的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot+Gradle+Thymeleaf搭配会如何——快速入门JAVA模板开发
一个 Gradle Thymeleaf 项目在资源更改时重新加载,另一个重新启动
Thymeleaf 模板无法正确解析我的 html 5 页面
带有 Spring Boot 的 Thymeleaf - 找不到静态资产 (CSS)
Ratpack + Thymeleaf + shadowJar - 解析模板“home”时出错,模板可能不存在或无法访问