springmvc 에서 contrller 와 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 페이지 의 매개 변 수 는 personList 1 입 니 다.

//   
  @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> 
<h2>    </h2> 
   
    <div style="padding:10px;"><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> 
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기