你有什么理由保留你的模板文件src/main/thymeleaf
吗?默认情况下,Thymeleaf 模板应存储在src/ratpack/thymeleaf
目录中。
ThymeleafModule
类定义存储所有模板的文件夹名称。默认值为thymeleaf
,当您创建 shadowJar 时,您应该thymeleaf
在 JAR 存档中找到一个文件夹。shadowJar 复制src/ratpack/thymeleaf
到这个目的地没有任何问题。
基于 Java 的 Ratpack 项目src/ratpack
默认情况下是不知道的,但您可以通过创建一个名为.ratpack
in的空文件src/ratpack
并进行配置来轻松配置它server -> server.findBaseDir()
(下面有更详细的示例)。
这是一个简单的例子:
构建.gradle
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "io.ratpack:ratpack-gradle:1.5.4"
classpath "com.github.jengelman.gradle.plugins:shadow:1.2.4"
}
}
apply plugin: "io.ratpack.ratpack-java"
apply plugin: "com.github.johnrengelman.shadow"
apply plugin: "idea"
apply plugin: "eclipse"
mainClassName = 'app.RatpackApp'
repositories {
jcenter()
}
dependencies {
// Default SLF4J binding. Note that this is a blocking implementation.
// See here for a non blocking appender http://logging.apache.org/log4j/2.x/manual/async.html
runtime 'org.slf4j:slf4j-simple:1.7.25'
compile ratpack.dependency('thymeleaf')
compile ratpack.dependency('guice')
testCompile "org.spockframework:spock-core:1.0-groovy-2.4"
}
src/main/java/app/RatpackApp.java
package app;
import ratpack.guice.Guice;
import ratpack.server.BaseDir;
import ratpack.server.RatpackServer;
import ratpack.thymeleaf.ThymeleafModule;
import java.util.HashMap;
import static ratpack.thymeleaf.Template.thymeleafTemplate;
public final class RatpackApp {
public static void main(String[] args) throws Exception {
RatpackServer.start(server ->
server.serverConfig(config -> config.findBaseDir())
.registry(Guice.registry(bindings -> bindings.module(ThymeleafModule.class)))
.handlers(chain -> chain.get(ctx -> ctx.render(thymeleafTemplate(new HashMap<String, Object>() {{
put("title", "Hello, Ratpack!");
put("header", "Hello, Ratpack!");
put("text", "This template got rendered using Thymeleaf");
}}, "home"))))
);
}
}
src/ratpack/thymeleaf/home.html
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head>
<title th:text="${title}" />
</head>
<body>
<h1 th:text="${header}"></h1>
<p th:text="${text}" />
</body>
</html>
请记住在其中创建一个空文件.ratpack
,src/ratpack
以便 Ratpack 可以将此位置作为文件基础目录来发现。
现在,在创建最终 JAR 后,gradle shadowJar
我可以看到模板文件被正确复制:
ratpack-thymeleaf-example [master●●] % unzip -l build/libs/ratpack-thymeleaf-example-all.jar | grep home
232 06-24-2018 10:12 thymeleaf/home.html
在这里你可以找到完整的例子 - https://github.com/wololock/ratpack-thymeleaf-example