后台程序通过Debug都能正常返回数据并封装到Model中。而在前台通过EL表达式取值时却是原样输出,如${cart.num}...
1 ///展现我的购物车 2 @RequestMapping("/show") 3 public String myCart(Model model) throws Exception{ 4 //准备数据 5 6 Long userId = userThreadlocal.getUserId(); 7 ListcartList = cartService.queryByUserId(userId); 8 model.addAttribute("cartList", cartList); 9 10 return "cart";11 }
能正常返回数据并通过视图解析器跳转到cart页面,可在cart.jsp中通过EL表达式无法取出。
事故原因:
原来是项目中的web.xml头部声明搞的鬼.....
加上即可~~~~