其他分享
首页 > 其他分享> > Springboot配置全局model(ModeMap)信息

Springboot配置全局model(ModeMap)信息

作者:互联网

 

有时候我们给所有页面都显示站点信息,可以直接全局配置ModelMap信息 然后页面就可以直接获取

 

GlobalConfig.java

import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ModelAttribute;

/**
 * @author 。
 */
@ControllerAdvice
public class GlobalConfig {

    @ModelAttribute
    public void globalModel(ModelMap model){
        model.addAttribute("siteName", "yvioo");
    }
}

 

标签:web,Springboot,ModeMap,ModelMap,springframework,org,import,model
来源: https://www.cnblogs.com/pxblog/p/16340491.html