• SpringMVC(十四) RequestMapping ModelAndView


    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>
    https://github.com/godmaybelieve
  • 相关阅读:
    你知道require是什么吗?
    jQuery类库的设计
    多线程下载图片
    多线程与CPU和多线程与GIL
    一个python小爬虫
    一个方格表的问题
    使用django发布带图片的网页(上)
    uWSGI+Django+nginx(下)
    uWSGI+Django (中)
    Linux下安装Python3的django并配置mysql作为django默认数据库(转载)
  • 原文地址:https://www.cnblogs.com/yuyu666/p/10136079.html
Copyright © 2020-2023  润新知