mvc可以使用ModelAndViev传递数据选择跳转的视图 controller中的代码, 把一个模拟的表单studentListSimulate传给ModelAndView @RequestMapping("/detial") public Model showStudentDetial(Model mod) { ModelAndView mav = new ModelAndView(); mav.addObject("studentListSimulate",…
<%@page import="cn.hncu.domain.User"%><!--这里是进行导包--><%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"&…
第一种方式: //先在代码段定义<% long date = new Date().getTime(); request.setAttribute("date", date); %>//然后EL表达式引用${date} 或者 //同样道理 这里得到时间 <% Date nowDate = new Date(); request.setAttribute("nowDate", nowDate); %>${nowDate} 第二种: 在JSP页首…