Spring boot에서 java 변수값을 템플릿에 출력하기
2024. 11. 17. 15:44ㆍJava/Spring Boot
java
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class MyController {
@GetMapping("/show-variable")
public String showVariable(Model model) {
String message = "Hello, Spring Boot!";
model.addAttribute("myVariable", message); // Add the variable to the model
return "template"; // Return the name of the template file
}
}
template
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Display Variable</title>
</head>
<body>
<h1>Displaying a Variable</h1>
<p>Value of myVariable: <span th:text="${myVariable}"></span></p>
</body>
</html>
output
Value of myVariable: Hello, Spring Boot!
'Java > Spring Boot' 카테고리의 다른 글
STS Javascript 자동완성 지원 설정 (1) | 2024.12.01 |
---|---|
STS4 javascript 메뉴가 보이지 않는 경우 (0) | 2024.11.30 |
FastAPI에서 이미지 가져오기 (0) | 2024.10.19 |
Spring boot mapping 설정 (0) | 2024.10.01 |
Spring boot Gmail 연동하여 stmp로 메일보내기 (0) | 2024.08.14 |