怎么在js中获取freemarker配置的全局变量
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么在js中获取freemarker配置的全局变量相关的知识,希望对你有一定的参考价值。
参考技术A @RequestMapping(value="/suit_item", method = RequestMethod.GET)public String getSuitItem(HttpServletRequest request, ModelMap map)
//TO DO
map.put("testCaseDtoList", testCaseDtoList);
return "/suit/suit_item";
本回答被提问者采纳
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);
---------------------
以上是关于怎么在js中获取freemarker配置的全局变量的主要内容,如果未能解决你的问题,请参考以下文章
freemarker 取得文本框内容赋值给一个变量, 怎么实现?
Springboot Freemarker配置全局变量配置类