내 템플릿에서 여러 값을 연결하려고 할 때 문제가 있습니다. 여기의 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>
내 TemplateEngine 및 TemplateResolver를 설정하는 방법은 다음과 같습니다.
<!-- 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>
ThymeleafTemplatingService :
@Autowired private TemplateEngine templateEngine;
.....
String responseText = this.templateEngine.process(templateBean.getTemplateName(), templateBean.getContext());
AbstractTemplate.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;
}
}