더북(TheBook)

2. 생성된 welcome.jsp 파일에 다음 내용을 작성하고 저장합니다. 위치는 BookMarket/src/main/webapp/WEB-INF/views입니다.

코드 3-3 BookMarket/src/main/webapp/WEB-INF/views/welcome.jsp

<%@ page contentType="text/html; charset=utf-8" %>
<html>
<head>
<title>Welcome</title>
</head>
<body>
    <h1>${greeting}</h1>  
    <p>${strapline}</p>  
</body>
</html>

WelcomeController 컨트롤러의 welcome() 메서드에서 전송된 모델 데이터 greeting 속성 값을 출력합니다.

WelcomeController 컨트롤러의 welcome() 메서드에서 전송된 모델 데이터 strapline 속성 값을 출력합니다.

신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.