您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關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?id=${p.id}" rel="external nofollow" >修改</a> <a href="${pageContext.request.contextPath}/person/delete.action?delId=${p.id}" rel="external nofollow" >刪除</a> </td> </tr> </c:forEach> </table> </body> </html>
以上就是springmvc中controller與jsp怎么實現傳值,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。