무엇을 만들지 생각하지도 않고 무작정 시작하는 웹 만들기.

 

 

 

 

 Spring에서 Thymeleaf사용하기 위해서는 처음 프로젝트를 생성할 때 Spring Boot Starters에서 Thymeleaf를 선택해주면 자동으로 Maven Depedency가 생성된다.

 

 초기에 생성하는 걸 잊었다고 프로젝트를 지웠다가 다시 만들지 말자. Edit Starters를 통해 추가할 수 있다.

 

프로젝트 오른쪽 클릭 - Spring - Edit Starters

 

 

 

 

Thymeleaf 체크 후 OK 

 

 OK를 누르면 자동으로 빌드가 되면서 pom.xml에 추가된 Thymeleaf dependency를 볼 수 있고 Maven Dependencies에 생성된 jar 파일 또한 볼 수 있다.

 

추가된 thymeleaf dependency

 

 이제 html에서 Thymeleaf를 써보자.

 

1
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
 

 

 html 태그에 요소만 넣어주면 Thymeleaf를 쓸 수 있다.

 

 

Thymeleaf는 th로 사용한다

 

 

https://www.thymeleaf.org/doc/tutorials/2.1/usingthymeleaf.html

 

Tutorial: Using Thymeleaf

1 Introducing Thymeleaf 1.1 What is Thymeleaf? Thymeleaf is a Java library. It is an XML/XHTML/HTML5 template engine able to apply a set of transformations to template files in order to display data and/or text produced by your applications. It is better s

www.thymeleaf.org

 

 

'공부 > 기타' 카테고리의 다른 글

ERD를 만들자  (0) 2020.07.25
MES 용어 정리 및 주요 기능  (0) 2019.11.25
new 연산자  (0) 2019.11.04
jsp gson  (0) 2019.10.04
jQuery input box 동적 추가 삭제  (0) 2019.08.16

+ Recent posts