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);

}

}
 
---------------------

posted @ 2019-07-28 04:52  李艳艳665  阅读(2612)  评论(0编辑  收藏  举报