ModelMap을 적용한 요청 처리 메서드 작성
package com.springmvc.chap05;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping("/home")
public class Example06Controller {
@GetMapping("/exam06")
public String requestMethod(ModelMap model) {
model.addAttribute("data", "ModelMap 예제입니다");
model.addAttribute("data2", "웹 요청 URL은 /home/exam06 입니다");
return "webpage05";
}
}
다음은 앞의 코드를 실행한 결과입니다.
▲ 그림 5-11 실행 결과