百里香:串联 - 无法解析为表达式
我在尝试在模板中连接多个值时遇到问题。根据Thymeleaf在这里的说法,我应该能够将它们放在一起......
4.6 连接文本
文本,无论是文本还是计算变量或消息表达式的结果,都可以使用 + 运算符轻松连接:
th:text="'The name of the user is ' + ${user.name}"
以下是我发现有效的示例:
<p th:text="${bean.field} + '!'">Static content</p>
但是,这不会:
<p th:text="${bean.field} + '!' + ${bean.field}">Static content</p>
从逻辑上讲,这应该有效,但事实并非如此,我做错了什么?
专家:
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring3</artifactId>
<version>2.0.16</version>
<scope>compile</scope>
</dependency>
以下是我如何设置我的模板引擎和模板解析器:
<!-- Spring config -->
<bean id="templateResolver" class="org.thymeleaf.templateresolver.ClassLoaderTemplateResolver">
<property name="suffix" value=".html"/>
<property name="templateMode" value="HTML5"/>
<property name="characterEncoding" value="UTF-8"/>
<property name="order" value="1"/>
</bean>
<bean id="templateEngine" class="org.thymeleaf.spring3.SpringTemplateEngine">
<property name="templateResolver" ref="fileTemplateResolver"/>
<property name="templateResolvers">
<list>
<ref bean="templateResolver"/>
</list>
</property>
百里香叶模板服务:
@Autowired private TemplateEngine templateEngine;
.....
String responseText = this.templateEngine.process(templateBean.getTemplateName(), templateBean.getContext());
摘要模板.java:
public abstract class AbstractTemplate {
private final String templateName;
public AbstractTemplate(String templateName){
this.templateName=templateName;
}
public String getTemplateName() {
return templateName;
}
protected abstract HashMap<String, ?> getVariables();
public Context getContext(){
Context context = new Context();
for(Entry<String, ?> entry : getVariables().entrySet()){
context.setVariable(entry.getKey(), entry.getValue());
}
return context;
}
}