Thymeleaf 사용방법
by 볼빵빵오춘기Springboot 설정
Maven에서 설정 (pom.xml에서 아래 코드 추가)
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
gradle에서 설정 (build.gradle - dependencies에 아래 코드 추가)
dependencies {
// thymeleaf
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
}
HTML 설정
<html lang="ko" xmlns:th="http://www.thymeleaf.org" >
xmlns:th="http://www.thymeleaf.org" 을 넣어줌으로써 나는 Thymeleaf 사용할꺼야 라는 의미이다.
'👩🏻💻 About 프로그래밍 > Thymeleaf' 카테고리의 다른 글
Thymeleaf 기본문법 a, 반복문, js(th:href,each,inline) (0) | 2023.05.27 |
---|---|
Thymeleaf 기본 문법 글자출력,조건(th:text,if) (0) | 2023.05.27 |
Thymeleaf layout(header, footer, content으로 나누기) (0) | 2023.05.27 |
타임리프(Thymeleaf)란? (0) | 2023.05.27 |
템플릿 엔진(Template Engine)이란? (0) | 2023.05.13 |
블로그의 정보
Hello 춘기's world
볼빵빵오춘기