spring mvc 中在jsp页面中取出类中返回值 return ModelAndView(),
publicModelAndViewshowDept(HttpServletRequestreq,HttpServletResponseresp){//获取表中所有信息L...
public ModelAndView showDept(HttpServletRequest req,HttpServletResponse resp){
//获取表中所有信息
List list=deptInfoDao.findAll();
//返回部门管理首页
return new ModelAndView("dept/showDept","list",list);
}
在jsp页面中,怎么取出ModelAndView("dept/showDept","list",list);保存的list;不使用EL表达式。 展开
//获取表中所有信息
List list=deptInfoDao.findAll();
//返回部门管理首页
return new ModelAndView("dept/showDept","list",list);
}
在jsp页面中,怎么取出ModelAndView("dept/showDept","list",list);保存的list;不使用EL表达式。 展开
展开全部
我给你改一下
public ModelAndView showDept(HttpServletRequest req,HttpServletResponse resp,ModelMap model){
//获取表中所有信息
List list=deptInfoDao.findAll();
//返回部门管理首页
model.addAttribute("list", list);
return new ModelAndView("dept/showDept",model);
}
在jsp中
<%
request.getAttribute(“list”);
%>
public ModelAndView showDept(HttpServletRequest req,HttpServletResponse resp,ModelMap model){
//获取表中所有信息
List list=deptInfoDao.findAll();
//返回部门管理首页
model.addAttribute("list", list);
return new ModelAndView("dept/showDept",model);
}
在jsp中
<%
request.getAttribute(“list”);
%>
追问
谢谢
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询