在FreeMarkerConfigurer的spring-boot中配置Freemarker,可以按照以下步骤进行:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
spring.freemarker.template-loader-path=classpath:/templates/
spring.freemarker.suffix=.ftl
或者
spring:
freemarker:
template-loader-path: classpath:/templates/
suffix: .ftl
@Configuration
public class FreemarkerConfig {
@Autowired
private Environment environment;
@Bean
public FreeMarkerConfigurer freeMarkerConfigurer() {
FreeMarkerConfigurer configurer = new FreeMarkerConfigurer();
configurer.setTemplateLoaderPath(environment.getProperty("spring.freemarker.template-loader-path"));
configurer.setDefaultEncoding("UTF-8");
Properties settings = new Properties();
settings.setProperty("auto_import", "/spring.ftl as spring");
configurer.setFreemarkerSettings(settings);
return configurer;
}
}
@Autowired
private FreeMarkerConfigurer freeMarkerConfigurer;
public void renderTemplate() {
Configuration configuration = freeMarkerConfigurer.getConfiguration();
// 使用configuration来进行模板渲染等操作
}
通过以上步骤,你就可以在FreeMarkerConfigurer的spring-boot中成功配置Freemarker,并使用它来进行模板渲染了。
关于FreeMarker的更多详细信息和使用方法,你可以参考腾讯云的相关产品文档:
领取专属 10元无门槛券
手把手带您无忧上云