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

    }

}

 

你可能感兴趣的:(SpringMvc,SpringBoot)