Spring_View 환경설정

Back/Spring 2023. 5. 2.

<!DOCTYPE HTML>
<html>
<head>
    <title>Hello</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
hello
<a href="/hello">hello</a>
</body>
</html>
  • 스프링 부트가 제공하는 Welcome Page 기능
    • 'static/index.html'을 올려두면 Welcome page 기능을 제공한다. *

  • 트롤러에서 리턴 값으로 문자를 반환하면 뷰 리졸버( ' vlewResolver' ) 가 화면을 찾아서 처리한다.
    • 스프링 부트 템플릿엔진 기본 viewName 매핑
    •  'resources:templates/' + {ViewName} + '.html'
참고: 'spring-boot-devtools' 라이브러리를 추가하면, 'html' 파일을 컴파일만 해주면 서버 재시작 없이 View 파일 변경이 가능하다.
인텔리J 컴파일 방법: 메뉴 build → Recompile

 

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

Spring_스프링 웹 개발 기초  (0) 2023.05.03
Spring_빌드하고 실행하기  (0) 2023.05.02
Spring_라이브러리  (0) 2023.05.02
Spring_프로젝트 생성 & 프로젝트 환경 설정  (0) 2023.05.01
Spring_00  (0) 2023.05.01