博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Springmvc_3(ModeAndView)
阅读量:6458 次
发布时间:2019-06-23

本文共 1699 字,大约阅读时间需要 5 分钟。

  1.准备jar

  2.编写controller

  

package com.home.springmvc.modelandview;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.servlet.ModelAndView;/** * 此类是:Springmvc 的ModelAndView * @author hpc * @2017年2月17日下午10:51:42 */@Controllerpublic class SpringmvcModelAndView {    /**     * 目标方法的返回值可以是 ModelAndView 类型。      * 其中可以包含视图和模型信息     * SpringMVC 会把 ModelAndView 的 model 中数据放入到 request 域对象中.      */    @RequestMapping("/springmvcModelAndView")    public ModelAndView springmvcModelAndView(){        // 创建ModelAndView用于携带model和视图        ModelAndView mv = new ModelAndView();        // 添加指定要显示的视图名字        mv.setViewName("success");        // 添加model(以键值对的方式),会将其存入到request域中去        mv.addObject("name", "dyn");        //返回ModelAndView        return mv;    }    }

 3 index.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"    pageEncoding="UTF-8"%>
Insert title here springmvcSessionAttributes
springmvcModelAndView
springmvcMap
userName:
userSex:
userAge:
address.city:
address.street:

   4 success.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"    pageEncoding="UTF-8"%>
Insert title here springmvc pojo
<%-- springmvcMap name: ${requestScope.name } --%>
springmvcModelAndView name:${requestScope.name }
<%-- springmvcSessionAttributes name:${sessionScope.name } --%>

   5 结果

 

转载于:https://www.cnblogs.com/mohehpc/p/6491128.html

你可能感兴趣的文章
IntelliJ IDEA 注册码
查看>>
linux 上面配置apache2的虚拟目录
查看>>
String字符串的截取
查看>>
DynamoDB Local for Desktop Development
查看>>
laravel 使用QQ邮箱发送邮件
查看>>
用javascript验证哥德巴赫猜想
查看>>
Shell编程-环境变量配置文件
查看>>
[Unity3d]DrawCall优化手记
查看>>
SQL Serever学习7——数据表2
查看>>
(转)Mac 下设置android NDK的环境
查看>>
Struts2和Spring MVC的区别
查看>>
理解Javascript参数中的arguments对象
查看>>
p2:千行代码入门python
查看>>
bzoj1106[POI2007]立方体大作战tet*
查看>>
spring boot configuration annotation processor not found in classpath问题解决
查看>>
【转】正则基础之——神奇的转义
查看>>
团队项目测试报告与用户反馈
查看>>
对软件工程课程的期望
查看>>
Mysql中文字符串提取datetime
查看>>
CentOS访问Windows共享文件夹的方法
查看>>