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

SpringMVC(十四) RequestMapping ModelAndView

时间:2017-01-21 07:47:11      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:org   创建   ack   demo   方法   tty   encoding   www   color   

ModelAndView返回模型数据和视图。参考以下Demo代码,了解其实现方法。关注通过视图名称创建ModelAndView的构造方法,以及通过${requestScope.attribute}的方法获取model数据的方式。

 

控制器代码:

package com.tiekui.springmvc.handlers;

import java.util.Date;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;


@Controller
public class ModelAndViewTest {
    @RequestMapping("testModelAndView")
    public ModelAndView testModelAndView() {
        String viewname = "success";
        ModelAndView modelAndView = new ModelAndView(viewname);
        modelAndView.addObject("time", new Date());
        
        return modelAndView;
    }

}

 

视图代码 success.jsp:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
    <h1>Hello SpringMVC View</h1>
    time : ${requestScope.time} 
</body>
</html>

 

视图代码 index.jsp

    <br>
    <a href="testModelAndView">ModelAndView</a>
    <br>

 

SpringMVC(十四) RequestMapping ModelAndView

标签:org   创建   ack   demo   方法   tty   encoding   www   color   

原文地址:http://www.cnblogs.com/zhoutiekui/p/6336409.html

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