码迷,mamicode.com
首页 > Web开发 > 详细

SSH 框架controller向jsp传递List jsp中使用el表达式获取

时间:2018-11-23 11:23:39      阅读:365      评论:0      收藏:0      [点我收藏+]

标签:object   ping   vat   类的属性   模拟   str   info   and   mapping   

 

mvc可以使用ModelAndViev传递数据选择跳转的视图

controller中的代码, 把一个模拟的表单studentListSimulate传给ModelAndView

    @RequestMapping("/detial")
    public Model showStudentDetial(Model mod) {
        ModelAndView mav = new ModelAndView();
        mav.addObject("studentListSimulate", studentListSimulate);
        mav.setViewName("jsp/student_detial");
        return mod;
    }

jsp中可以使用el表达式获取model中studentListSimulate的元素,然后再通过实体类的属性,获取属性的值

这是model实体类中的属性

public class StudentModel {
    private int studentIdInModel;
    private String studentNameInModel;
    private int studentAgeInModel;

如图

 技术分享图片

如果,是从数据库里查询到一个list怎么办呢? 如何从controller中向jsp传递呢?

同样是 把list传给ModelAndView ,只不过这次的list变了,是在dao中生成,返回给service然后再返回给controller的

技术分享图片

验证一下,已经传入了

技术分享图片

前台,使用el表达式获取model中的list项目即可

技术分享图片

 

SSH 框架controller向jsp传递List jsp中使用el表达式获取

标签:object   ping   vat   类的属性   模拟   str   info   and   mapping   

原文地址:https://www.cnblogs.com/jnhs/p/10005931.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!