获取域中的对象
数据准备
Student xm = new Student();
xm.setName("小明")
xm.setBirthday(new Date());
req.setAttribute("stu",xm);
数据获取
// 获取小明对象
${requestScope.stu}
// 获取小明对象的姓名
${requestScope.stu.name}
// 获取小明对象的生日
${requestScope.stu.birthday}
对象属性的获取本质
调用了对象的get系列方法