hello.html
페이지 정보
본문
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"> <!-- ① -->
<head>
<title>web</title>
<link rel="stylesheet" href="/css/style.css" />
</head>
<body>
<h1 th:text="${msg}"></h1>
<h1>[[${msg}]]</h1>
<input th:value="${msg}"><br>
<input value="[[${msg}]]"><br><!-- 사용 불가 -->
</body>
</html>
[설명]
① Thymeleaf 의 th 속성을 사용하기 위한 네임스페이스를 선언
- 이전글SampleController.java 24.06.03
- 다음글② SampleController.java ( 배열 및 반복문 ) 24.06.04
댓글목록
등록된 댓글이 없습니다.