Springboot如何配置全局model(ModeMap)呢?
下文笔者讲述Springboot配置全局model的方法及示例分享,如下所示
我们只需使用 @ControllerAdvice 即可为所有controller配置相应的ModelMap例:配置一个全局ModelMap,所有页面均可使用和获取
GlobalConfig.java import org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ModelAttribute; @ControllerAdvice public class GlobalConfig { @ModelAttribute public void globalModel(ModelMap model){ model.addAttribute("siteName", "java265.com"); } }
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。