- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Thymeleaf 3 是否以某种方式支持 Tiles 2?有一个我用于 Thumeleaf 2.x.x 的包 thymeleaf-extras-tiles2-spring4
但正如我现在看到的那样,由于 org.thymeleaf.dialect.AbstractDialect
中的更改,它不兼容类
Caused by: java.lang.NoSuchMethodError: org.thymeleaf.dialect.AbstractDialect: method <init>()V not found
[INFO] at org.thymeleaf.extras.tiles2.dialect.TilesDialect.<init>(TilesDialect.java:46)
我是否需要等待此集成的更新才能开始使用 T3?
有什么方法可以在 Thymeleaf3 中模拟 Tiles
我只将我的 Tiles 用于这样的事情:
<definition name="portal/**" template="layouts/portal">
<put-attribute name="_head" value="/portal/{1} :: _head"/>
<put-attribute name="content" value="/portal/{1} :: content"/>
</definition>
最佳答案
为了解决这个问题,我为 SpringTemplateEngine
创建了一个代理,并建议使用 TemplateEngine.process()
方法。
工作原理:
基于模板路径的代码映射布局实例:
portal/moje_konto/moje_dane
映射到布局
LAYOUTS_PATH/portal
此外,它传递包含实际模板路径的变量 VIEW
内部布局可用于包含特定片段。非常简单的门户布局可能如下所示:
<!DOCTYPE html SYSTEM "about:legacy-compat">
<html lang="pl" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.springframework.org/security/tags">
<body>
<div th:replace="${'portal/' + VIEW} :: content">Content</div>
</body>
</html>
Controller :
@PreAuthorize("isAuthenticated()")
@RequestMapping(value = "/", method = RequestMethod.GET)
public String home(Model model) {
return "portal/home/index";
}
模板引擎:
public class LayoutTemplateEngine implements ITemplateEngine, MessageSourceAware, InitializingBean {
private final Logger logger = Logger.getLogger(this.getClass().getName());
private final String LAYOUTS_PATH = "layouts/";
private final SpringTemplateEngine templateEngine = new SpringTemplateEngine();
@Override
public void process(TemplateSpec templateSpec, IContext context, Writer writer) {
String template = templateSpec.getTemplate();
logger.info("Rendering template: " + template);
if (context instanceof WebExpressionContext) {
int end = template.indexOf("/");
if (end != -1) {
// change template
templateSpec = new TemplateSpec(LAYOUTS_PATH + template.substring(0, end), templateSpec.getTemplateSelectors(), templateSpec.getTemplateMode(), templateSpec.getTemplateResolutionAttributes());
// add VIEW variable
((WebExpressionContext)context).setVariable("VIEW", template.substring(end + 1));
}
}
templateEngine.process(templateSpec, context, writer);
logger.info("Rendering finished");
}
public void setTemplateResolver(final ITemplateResolver templateResolver) {
templateEngine.setTemplateResolver(templateResolver);
}
public void setEnableSpringELCompiler(final boolean enableSpringELCompiler) {
templateEngine.setEnableSpringELCompiler(enableSpringELCompiler);
}
public void addDialect(final IDialect dialect) {
templateEngine.addDialect(dialect);
}
public void addTemplateResolver(final ITemplateResolver templateResolver) {
templateEngine.addTemplateResolver(templateResolver);
}
@Override
public IEngineConfiguration getConfiguration() {
return templateEngine.getConfiguration();
}
@Override
public String process(String template, IContext context) {
return process(new TemplateSpec(template, null, null, null), context);
}
@Override
public String process(String template, Set<String> templateSelectors, IContext context) {
return process(new TemplateSpec(template, templateSelectors, null, null), context);
}
@SuppressWarnings("resource")
@Override
public String process(TemplateSpec templateSpec, IContext context) {
final Writer stringWriter = new FastStringWriter(100);
process(templateSpec, context, stringWriter);
return stringWriter.toString();
}
@Override
public void process(String template, IContext context, Writer writer) {
process(new TemplateSpec(template, null, null, null), context, writer);
}
@Override
public void process(String template, Set<String> templateSelectors, IContext context, Writer writer) {
process(new TemplateSpec(template, templateSelectors, null, null), context, writer);
}
@Override
public IThrottledTemplateProcessor processThrottled(String template, IContext context) {
return processThrottled(new TemplateSpec(template, null, null, null), context);
}
@Override
public IThrottledTemplateProcessor processThrottled(String template, Set<String> templateSelectors, IContext context) {
return processThrottled(new TemplateSpec(template, templateSelectors, null, null), context);
}
@Override
public IThrottledTemplateProcessor processThrottled(TemplateSpec templateSpec, IContext context) {
return templateEngine.processThrottled(templateSpec, context);
}
@Override
public void afterPropertiesSet() throws Exception {
templateEngine.afterPropertiesSet();
}
@Override
public void setMessageSource(MessageSource messageSource) {
templateEngine.setMessageSource(messageSource);
}
}
关于spring - Thymeleaf 3 和 Tiles2 集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37322740/
这是引用 Google Tile Map 或 Bing Maps。是否可以在不使用任何类型的内部计算指定缩放级别(或 LevelOfDetails)的情况下获得 Tile Count、Tile X、T
我有一个 Tiles 模板,其中每个页面都提供一个标题,一些要添加到 中的内容,要放入一些混凝土的东西 ,以及附加到 的内容在一切之后。 大部分内容都非常小,因为页面是用 JS 呈现的。 我怎样才
我正在使用 Apache Tiles 2.1 开展一个项目。 我遇到了一个问题,即使用列表属性扩展模板会创建这些列表项的重复项...每个继承级别都有一组重复项。 作为示例,以下是基本定义及其将生成的页
我在 HTML 的背景层中有一个重复的水平图案。我可以使用 1 像素宽的图像或它的倍数(10、20、50...)来实现。 问题是: 哪个更好? 使用薄(小文件大小)图像并使其重复很多 使用更大的图片,
我们正在使用 Apache Tiles 3.0。 在我们的 Apache Tiles-Def 文件中,我们偶尔会遇到此 DTD 引用的问题,这可能是因为该站点不可靠。偶尔会出现“Reading Def
我在我的网络应用程序中使用 Tiles。我在瓷砖中使用了标准布局 (standard.jsp)。在 standard.jsp 之上有很多包含,涉及标签库等。 让我们做一个简化的例子。 标准.jsp:
我正在制作一个基于 2d tile 的游戏,我试图通过对 tile 结构中的值使用位字段和字节来保持我的 tile 结构小: struct Tile { // 3 bytes (24 bits
我已经在 Tiled 中制作了一张 map ,并且已经生成了一个 JSON。每当我尝试在 Chrome 中加载 map 时,它根本无法加载。当我去检查网站时,有类似警告: 在来自 Tiled 的 Js
我使用 struts 2.3.16 和 tiles 2.0.6。 具有空属性(以及其他属性)的图 block 定义: 一些其他定义扩展了它,他们可以选择填入值: 或者也留空。 我试图通过使用 st
我想在Struts2框架中使用tile。作为用于显示图 block 内容的标签,tiles:insert 和tiles:get 之间的基本区别是什么? 最佳答案 is equivalent to
我正在从 Strut1 + Tiles 项目迁移到 SpringMVC 和 Apache Tiles 3。我对Struts1+Tiles只了解一点点,它太旧了,我陷入了Struts-tiles中的Co
我正在使用Tiles,Spring和Hibernate创建一个应用程序。 在运行时,它显示以下错误: Can not find the tag library descriptor for "http
目前我在计划任务的帮助下实现了我的翻转图块,因此类似方法的一个问题是翻转图块将在时间间隔内翻转相同的图像。所以我想要实现的是我需要像循环瓷砖一样翻转我的图像。即一个接一个的方式。这里要注意的一件事是我
我正在使用 v0.6.2 和 Cocos2D v0.99.5,现在我真的非常需要为我的一些图 block 制作动画。我读了part of a wiki关于如何为图 block 制作动画,但它似乎与 M
我有一个图 block ,其中列出了提供给它的对象中的文章。此图 block 是大多数页面的一部分,但不是全部页面。有没有什么方法可以自动仅向需要它的页面提供对象(包含特定图 block )?现在我只
我正在寻找一种解决方案,以根据游戏 block 的类型对我的游戏 block 进行分组。瓷砖存储在二维数组中,类型为空和水,分组的瓷砖将存储在组类中。 所以如果我有二维数组: 0, 0, 0, 0,
我在今天的 maven 构建过程中遇到以下错误。 Unable to resolve artifact: Unable to get dependency information: Unable to
我正在尝试让 Apache Tiles' put-list-attribute 与 Thymeleaf 一起工作。 这是我尝试过的: 来自 Tiles 配置: 来自 thymlea
我在 UI 的 mat-grid-list 中动态显示 mat-grid-tile,其数量和数据随着后端值的变化而变化。它们是动态生成的。单击任何 mat-grid-tile 都会调用一个函数并将数据
我制作了一个 Tiled 游戏。现在,我正在通过增加场景中的节点数量来对手机的功能进行压力测试。有基于物理的东西,AI 运动,日夜系统,粒子在这里和那里突然出现以及我的场景的引擎盖下发生的许多其他事情
我是一名优秀的程序员,十分优秀!