백지부터 시작하는 이세계 코딩 생활

Spring MVC 패턴에 대해 알기 본문

Spring/Spring MVC pattern

Spring MVC 패턴에 대해 알기

조아덕 2020. 8. 21. 11:27
Ref.  처리과정 (흐름) 및 Spring Legacy Project 생성 방법.

https://hongku.tistory.com/115

 

SpringMVC :: 스프링 MVC 기초, 스프링MVC 프로젝트 만들기

스프링이 유명하게 된 계기는 아마도 웹 어플리케이션 제작에 적용되면서, 웹 프레임워크로서 우수성이 인정되었기 때문이다. 심지어는 스프링 = web 이다. 라고 할 정도로 우수한 평가를 받고 ��

hongku.tistory.com

/*

Client 의 요청 >
	DispatcherServlet 이 요청을 받음(Listen) > 
    
		DispatcherServlet 가 Controller 에게 요청 > 
        
			Controller 가 ModelAndView를 통해 DispatherServlet 에게 응답 >
            
ViewResolver 와 Views(JSP)를 통해 Client 에게 응답

*/

Ref. 개요

medium.com/@js230023/git-repository-%EC%A0%91%EC%86%8D-%EC%95%94%ED%98%B8-%EB%B3%80%EA%B2%BD-ca91179ce07d

 

Git repository 접속 암호 변경

윈도우(Window) 환경

medium.com

 

 

Ref. Spring MVC Framework 구조설명, 기능설명, 필수설정 설명.

https://gmlwjd9405.github.io/2018/12/20/spring-mvc-framework.html

 

[SpringMVC] Spring MVC Framework란 - Heee's Development Blog

Step by step goes a long way.

gmlwjd9405.github.io

< index >

  • Spring MVC 아키텍처 이해
  • Project Structure 이해
  • Model, View, Controller 사용법 
  • MVC 구현을 위한 기본 설정 방법 및 개념 이해

 

Ref. Spring 원문? 기본 설명 from 공식홈.

https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html

 

Web on Servlet Stack

This part of the reference documentation covers support for Servlet stack, WebSocket messaging that includes raw WebSocket interactions, WebSocket emulation through SockJS, and publish-subscribe messaging through STOMP as a sub-protocol over WebSocket. 4.1

docs.spring.io

https://docs.spring.io/spring/docs/3.2.x/spring-framework-reference/html/mvc.html

 

17. Web MVC framework

@RequestMapping(method = RequestMethod.POST) public String processSubmit(@ModelAttribute("pet") Pet pet, Model model, BindingResult result) { … } Note, that there is a Model parameter in between Pet and BindingResult. To get this working you have to reor

docs.spring.io

 

'Spring > Spring MVC pattern' 카테고리의 다른 글

Spring Web MVC 공식 페이지  (0) 2020.08.24
page to page  (0) 2020.08.24
Comments