본문 바로가기
Spring/Spring Muzi

수업시간에 그냥 필기...

by 미눅스[멘토] 2023. 7. 21.
728x90

Controller를 요청하려면
3가지가 있어야 된다.
//요청URL : 
//요청파라미터 : 
//요청방식 : 
============================================================================


ViewResolver가 접두어와 접미어를 준비시켜놓음


serv;et-context.xml에서

 </beans:bean class="org.springframework.web.servlet.view.internalresourceviewresolver">
 </beans:property name="prefix" value=">
 </beans:property name="suffix" value=".jsp" >




============================================================================

web.xml = 서버 톰캣설정
root.context.xml = 스프링 설정

============================================================================

 

1) @RequestParam

 

                             

 

 

2)@ModelAttribute 

자바랑 jsp와 연결된다.

============================================================================

JSP

page request session application
requestContext request session application
    ${cartlist}  
pageScope requestScope sessionScope applicationScope

Scope에 없으면 Controller 국회의원 modelAndView로 넘어가서 찾음

 

 

딸라{cartList}
1. 각 scope(영역) scan
1) pageScope.cartList : pageContext.setAttribute("cartList")의 결과데이터를 찾음
2) RequestScope.cartList : request.setAttribute("cartList")의 결과데이터를 찾음
3) sessionScope.cartList : session.setAttribute("cartList")의 결과데이터를 찾음
4) applicationScope.cartList : application.setAttribute("cartList")의 결과데이터를 찾음
2. 1.에 얿을 때 model.addObject("cartList",결과데이터) scan
3. 1.그리고 2.이 없으면 null

 

============================================================================

 

 

 

'Spring > Spring Muzi' 카테고리의 다른 글

동기,비동기  (0) 2023.07.25
그냥 수업 필기..  (0) 2023.07.25
AJAX, XML, JSON, CSV 수업...그냥..필기...  (0) 2023.07.24
Spring MVC패턴 흐름  (0) 2023.07.19
무지  (0) 2023.07.19