Spring - view controller(GetMapping 대체)

김도형·2022년 10월 24일
0

view controller(GetMapping 대체)

  • Post 방식은 사용 불가
  • 단순히 입력과 출력을 이어주는 Get 연결 방식은 view controller 사용해서 대체 가능.(따로 GET 메서드 사용하지 않아도 됨)

GET 방식

@GetMapping("/register/add")
	public String register() {
		return "registerForm"; // WEB-INF/views/registerForm.jsp
	}

view controller
servlet-context.xml 에서 view-controller 등록

<view-controller path="/" view-name="/WEB-INF/views/home/home.jsp"/>

스키마 생략

  • 스키마 생략 조건
    • 스키마 태그 중 꼭 하나만 생략되어 있어야한다. 두 개 이상 생략이라면 접두사 스키마 태그를 꼭 써줘야함.
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
			 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
			 xmlns:beans="http://www.springframework.org/schema/beans"
			 xmlns:context="http://www.springframework.org/schema/context"/>
  • 스키마 생략 안한 경우
<beans:beans xmlns:mvc="http://www.springframework.org/schema/mvc">
profile
3년간 웹/앱, 자동제어 QA 🔜 개발자로 전향하여 현재 교육 회사에서 백엔드 개발자로 근무 중입니다.(LinkedIn : https://www.linkedin.com/in/dohyoung-kim-5ab09214b)

0개의 댓글