Spring Boot & JPA 실무 과정 자료], Thymeleaf 라는 뷰 템플릿엔진을 이용

 

 

 

 

Spring Boot & JPA 실무 과정 자료] , Thymeleaf 라는 뷰 템플릿엔진을 이용

실무개발자를위한 실무교육 전문교육센터학원
www.oraclejava.co.kr에 오시면 보다 다양한 강좌를 보실 수 있습니다.

, Thymeleaf 라는 뷰 템플릿엔진을 이용

 

■ JSPs should be avoided if possible, there are several known limitations when using them with embedded servlet containers.
 

http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#boot-features-spring-mvc-template-engines


■ 템플릿 위치: src/main/resources templates 폴더


소스 코드
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>철수네 휴대폰 가게</title>
</head>
<body>
 <p th:text="${msg}">잠시만 기다려 주세요...</p>
</body>
</html>

 

+ Recent posts