Springboot Freemarker配置全局变量配置类
Posted liyanyan665
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot Freemarker配置全局变量配置类相关的知识,希望对你有一定的参考价值。
package com.xhd.read.config;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import javax.annotation.PostConstruct;
@Slf4j
@Configuration
@Data
@NoArgsConstructor
@AllArgsConstructor
public class FreeMarkerConfig
@Autowired
private freemarker.template.Configuration configuration;
@Value("$system.ctx")
private String ctx;
@Value("$system.spath")
private String spath;
@PostConstruct
public void setConfigure() throws Exception
configuration.setSharedVariable("CPATH", ctx);
configuration.setSharedVariable("SPATH", spath);
---------------------
以上是关于Springboot Freemarker配置全局变量配置类的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot入门-15(springboot配置freemarker使用YML)
Java -- springboot 配置 freemarker