中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springmvc中controller與jsp怎么實現傳值

發布時間:2020-11-25 17:07:40 來源:億速云 閱讀:355 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關springmvc中controller與jsp怎么實現傳值,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

在springmvc中的controller所對應的函數中,如果需要從*.jsp頁面中獲取數據,可以自行在函數括號中寫,springmvc會自動封裝傳過來的值。

spring-mvc.xml 中加入如下語句:

<!-- 自動掃描 --> 
<context:component-scan base-package="cn.itcast.springmvc.service,cn.itcast.springmvc.web.controller"/> 
<!-- 注解驅動 --> 
<mvc:annotation-driven/> 

Controller.java 兩種形式都可以,但是第二種,jsp頁面中的參數是personList1

//列表 
  @RequestMapping("/listAll") 
  public String listAll(Map<String,Object> model){ 
    List<Person> personList = ps.listAll(); 
    model.put("personList", personList); 
     
    System.out.println(" listall hello"); 
     
    return "person/jPersonList"; 
  } 
   
  //列表 
  @RequestMapping("/listAllOther") 
  public String listAllOther(Model model){ 
    List<Person> personList1 = ps.listAll(); 
    model.addAttribute(personList1); 
     
    System.out.println(" listallother1 hello"); 
     
    return "person/jPersonList"; 
  } 

jsp頁面中

<%@ page language="java" pageEncoding="UTF-8"%> 
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 
<html> 
 <head> 
  <title>My JSP 'index.jsp' starting page</title> 
 </head> 
  
 <body> 
<h3>用戶列表</h3> 
   
    <div ><a href="${pageContext.request.contextPath}/person/tocreate.action" rel="external nofollow" >新增</a></div> 
   
<table border="1"> 
<tr> 
  <td>photo</td> 
  <td>id</td> 
  <td>name</td> 
  <td>age</td> 
  <td>操作</td> 
</tr> 
 
<c:forEach items="${personList}" var="p"> 
<tr> 
  <td><img src="${pageContext.request.contextPath}"/></td> 
  <td>${p.id}</td> 
  <td>${p.name}</td> 
  <td>${p.age}</td> 
  <td> 
    <a href="${pageContext.request.contextPath}/person/toupdate.action&#63;id=${p.id}" rel="external nofollow" >修改</a> 
    <a href="${pageContext.request.contextPath}/person/delete.action&#63;delId=${p.id}" rel="external nofollow" >刪除</a> 
  </td> 
</tr> 
</c:forEach> 
 
</table> 
 </body> 
</html> 

以上就是springmvc中controller與jsp怎么實現傳值,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

罗山县| 瓦房店市| 商丘市| 清新县| 开封市| 桐乡市| 肥乡县| 昂仁县| 哈尔滨市| 克什克腾旗| 会东县| 天门市| 江华| 昔阳县| 古丈县| 靖远县| 嵊泗县| 清远市| 郯城县| 贵阳市| 南丹县| 城口县| 嘉禾县| 芜湖县| 香河县| 滦南县| 沾益县| 衡南县| 鄂尔多斯市| 陵川县| 民和| 安阳县| 延庆县| 察雅县| 饶平县| 大石桥市| 库尔勒市| 栖霞市| 中江县| 阿拉善盟| 泰顺县|