map){ map.put("msg","登出!"); map.put("url","/sell"); return new ModelAndView("co_springboot ">
当前位置:   article > 正文

【Spring Boot教程】(十三):Spring Boot从后端传值给前端_springboot thymeleaf传递参数到前端

springboot thymeleaf传递参数到前端

前端直接使用Thymeleaf语法即可

使用ModelAndView+Map

ModelAndView是用来返回页面的,防止添加了@RestController注解

@GetMapping("/seller/logout")
public ModelAndView logout(Map<String,Object> map){
    map.put("msg","登出!");
    map.put("url","/sell");
    return new ModelAndView("common/success",map);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

使用HttpServletRequest

注意不要加@RestController注解

@GetMapping("/index")
public Object index(HttpServletRequest request) {
    //先获取principal,这个是通过MyRealm的认证方法rutuen的,进行了注入
    Object principal = SecurityUtils.getSubject().getPrincipal();
    AccountProfile user = (AccountProfile) principal;
    //添加session
    request.setAttribute("username",user.getUsername());
    return "index";
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

使用Model

@RequestMapping(value = "/")
public String index(Model model){ 
    String students ="刘洋";
    model.addAttribute("s",students)
    return "index";
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/481575
推荐阅读
相关标签
  

闽ICP备14008679号