Tags
- Unity
- postman tests
- Front-end developer
- postman html parse
- Android/iOS Developer
- Android
- postman collection
- C++
- emplace_back
- 우수한 프런트 개발자
- postman csv
- postman excel
- Interaction developer
- oracle
- c#
- postman automations
- UI/UX Engineer
- 프런트엔드
- MFC
- Java
- web developer
- postman session
- 다빈치 리졸브
- postman pre-request
- LSL_Script
- Intellij
- postman
- 좋은 개발자
- solidity
- postman collection variables
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Archives
- Today
- Total
david's daily developer note
[BE] Spring Thymeleaf 본문
728x90
Thymeleaf는 웹 및 Java 템플릿 엔진으로 서버 사이드의 웹 애플리케이션을 개발할 때 사용되는 도구이다.
Thymeleaf는 HTML, XML, JavaScript, CSS 등과 같은 웹 페이지 리소스를 동적으로 생성하기 위해 사용하며,
주로 Java 기반의 웹 애플리케이션에서, 특히 Spring Framework와 함께 많이 사용된다.
(IntelliJ IDEA는 Thymeleaf와 같은 웹 템플릿 엔진을 통합하여 웹 애플리케이션의 개발 및 디버깅을 지원,
Spring framework 프로젝트에서는 MVC 패턴에서 VIEW에 해당하는 화면을 동적으로 표현할 때 주로 사용한다.)
다음은 간단하게 개념만 잡을 수 있는 예제이다.
1. 의존성 추가
dependencies {
// Other dependencies...
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
}
2. 템플릿 작성
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Thymeleaf Example</title>
</head>
<body>
<h1 th:text="${message}"></h1>
</body>
</html>
● line2는 html 파일에 thymeleaf 사용함을 나타내는 필수 문장
● [th:] 접두사를 통하여 thymeleaf 문법임을 알린다. 실제 표시되는 화면에서 th:는 제거된다.
● ${message} 는 message라는 변수를 선언하는 문장.
3.컨트롤러 생성
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HomeController {
@GetMapping("/")
public String home(Model model) {
model.addAttribute("message", "Hello, Thymeleaf!");
return "home"; // This corresponds to the "home.html" Thymeleaf template
}
}
home 함수는 message 변수에 "Hello, Thymeleaf!" 문자열 값을 Model 객체 추가하고 뷰 템플릿을 반환한다.
조금 더 자세한 Thymeleaf 문법이 궁금하면 다음 링크를 참고하자.
728x90
'[Develop] Web > Back-end' 카테고리의 다른 글
[BE] 포스트맨 + 엑셀 조합으로 API 실행 자동화 -1 (Authorization) (0) | 2023.09.19 |
---|---|
[BE] IntelliJ + Spring + Maven 기존 프로젝트 서버 설정 체크 (0) | 2023.09.11 |
[BE] Spring AOP (0) | 2023.08.28 |
[BE] IntelliJ Spring boot (WSL2) 프로젝트 설정 (1) | 2022.08.16 |
[BE] java "json to DTO" collection (0) | 2022.08.01 |