View 환경설정
1. Welcome Page 만들기.
스프링 부트가 제공하는 Welcome Page 기능.
static/index.html 을 올려두면 Welcome page 기능을 제공한다.
💡 thymeleaf 템플릿 엔진
thymeleaf 공식 사이트: https://www.thymeleaf.org/
스프링 공식 튜토리얼: https://spring.io/guides/gs/serving-web-content/
스프링부트 메뉴얼: https://docs.spring.io/spring-boot/docs/2.3.1.RELEASE/reference/ html/spring-boot-features.html#boot-features-spring-mvc-template-engines
💡 thymeleaf 템플릿엔진 동작 확인
컨트롤러에서 리턴 값으로 문자를 반환하면
뷰 리졸버( viewResolver )가 화면을 찾아서 처리한다.
※ 스프링 부트 템플릿엔진 기본 viewName 매핑
resources:templates/ + {ViewName} + .html
🍫 컨트롤러 맵핑 예제
Controller / HelloController.java
package hello.hellospring.Controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HelloController {
@GetMapping("hello")
public String hello(Model model) {
model.addAttribute("data", "hello!!");
return "hello";
}
}
templates / hellow.html
<!DOCTYPE HTML>
<!--타임리프 사용-->
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Hello</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<p th:text="'안녕하세요. ' + ${data}" >안녕하세요. 손님</p>
</body>
</html>
참고: spring-boot-devtools 라이브러리를 추가하면,
html 파일을 컴파일만 해주면 서버 재시작 없이 View 파일 변경이 가능하다.
> 인텔리J 컴파일 방법: 메뉴 build Recompile
2. cmd 빌드하고 실행하기
1) 프로젝트 경로 이동 = cd 경로
2) gradlew build 실행 = gradlew build
3) build / libs 폴더로 이동 = cd libs
4) 실행 = java -jar hello-spring-0.0.1-SNAPSHOT.jar
5) 실행 확인
6) 종료 = ctrl + c
'BackEnd > Spring Boot' 카테고리의 다른 글
[ Spring ] MySQL - (1) 이클립스 세팅 및 실행 (1) | 2023.02.28 |
---|---|
[ Spring ] xml - 스프링 프로젝트 실행 절차의 이해 (0) | 2023.02.26 |
[ Spring ] eGovframe 이클립스 설치 (0) | 2023.02.26 |
[ Spring / SpringBoot ] 스프링 웹 개발 기초 : 정적 컨텐츠 / MVC / API (0) | 2023.02.25 |
[ Spring / SpringBoot ] 스프링부트 프로젝트 생성 및 실행 시켜보기 (0) | 2023.02.24 |