SSM框架——后台向前台JSP页面传值

本来跳转页面的写法是:

@RequestMapping("/NationalStandard")

    public String NationalStandard() {

        return "jsp/experience/nationalStandard";   //jsp页面的路径

    }

现在由于jsp页面需要根据权限来显示页面,所以要实现后台向前台传值:

@RequestMapping("/NationalStandard")

    public String NationalStandard(Model model) {

        //shiro获取用户信息
        Account currentAccount=AccountShiroUtil.getCurrentUser();

       //讲得到的信息储存到model中

       model.addAttribute("currentAccount", currentAccount);

        return "jsp/experience/nationalStandard";
 }


PS:前台JSP页面得到值后的使用:

 

         //当信息中的roleName等于“超级管理员”的时候,显示下面的按钮

                  

        
         

        


思考:前台的“超级管理员”可以替换成其他的,也可以从后台中读取。

你可能感兴趣的:(SSM框架)