Springboot Freemarker configure global variable configuration class


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

}

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

Guess you like

Origin www.cnblogs.com/liyanyan665/p/11257598.html