Spring Boot&主题变化

时间:2015-09-01 08:47:51

标签: spring spring-boot themes

我正在使用Thymeleaf的Spring Boot。 我为PC,Mobile,Tablet创建了sub tempalte文件夹,就像主题一样。 现在,我想按用户更改模板文件夹。

[我的模板文件夹]   - PC:template / pc / index.html   - Mible:template / mobile / index.html

但我无法拦截视图解析器。 怎么用?

1 个答案:

答案 0 :(得分:0)

仅在java-configuration add

@Autowired
private SpringTemplateEngine templateEngine;

然后只需注册您的自定义模板解析器。

@PostConstruct
public void extension() {
    templateEngine.addTemplateResolver(dbTemplateResolver());
}