* Thymeleaf 3.0 문서를 참고하여 정리함
https://www.thymeleaf.org/documentation.html
1 Introducing Thymeleaf
2 The Good Thymes Virtual Grocery
<html xmlns:th="http://www.thymeleaf.org">
3 Using Texts
* 타임리프의 문법 형태는 HTML5 문법 형태로 변경이 가능함. 세미콜론(:)을 하이픈(-)으로 변경하면 됨
: th:text -> data-th-text
* th:text
: 태그 바디의 텍스트를 대체함
<p th:text="#{home.welcome}">Welcome to our grocery store!</p>
: p태그 바디의 "Welcome to our grocery store!" 텍스트를 "#{home.welcome}" 값으로 대체함
: #{home.welcome}의 값은 .properties파일에서 key가 home.welcome인 값을 불러옴
: .properties파일은 org.thymeleaf.messageresolver.IMessageResolver를 구현하며 설정된 위치를 참조하는데, 명시적으로 구현하지 않았으면 org.thymeleaf.messageresolver.StandardMessageResolver가 기본적으로 구현되고 해당되는 html파일과 같은 폴더의 같은 파일명.properties파일을 참조함
/WEB-INF/templates/home.html 파일의 properties 파일은 아래처럼 같은 폴더내에서 찾을 수 있음
/WEB-INF/templates/home_en.properties -> locale이 미국인 경우
/WEB-INF/templates/home_es.properties -> locale이 스페인인 경우
/WEB-INF/templates/home.properties -> locale이 매칭되는 파일이 없으면 기본 파일이 됨
* th:utext
// properties 파일에 태그가 쓰여져 있는 경우
home.welcome=Welcome to our <b>fantastic</b> grocery store!
// th:text를 사용한 경우에는 태그 바디의 텍스트를 대체를 하면서 태그가 아래처럼 변경됨
<p>Welcome to our <b>fantastic</b> grocery store!</p>
// properties 파일의 텍스트에 있는 태그를 그대로 적용하기 위해서는
// th:utext를 사용해야 됨
<p th:utext="#{home.welcome}">Welcome to our grocery store!</p>
// th:utext를 사용하게 되면 아래처럼 태그가 있는 그대로 텍스트가 대체는 것을 확인할 수 있음
<p>Welcome to our <b>fantastic</b> grocery store!</p>
4 표준 표현식 (Standard Expression Syntax)
Simple expressions:
Variable Expressions: ${...}
Selection Variable Expressions: *{...}
Message Expressions: #{...}
Link URL Expressions: @{...}
Fragment Expressions: ~{...}
Literals
Text literals: 'one text' , 'Another one!' ,…
Number literals: 0 , 34 , 3.0 , 12.3 ,…
Boolean literals: true , false
Null literal: null
Literal tokens: one , sometext , main ,…
Text operations:
String concatenation: +
Literal substitutions: |The name is ${name}|
Arithmetic operations:
Binary operators: + , - , * , / , %
Minus sign (unary operator): -
Boolean operations:
Binary operators: and , or
Boolean negation (unary operator): ! , not
Comparisons and equality:
Comparators: > , < , >= , <= ( gt , lt , ge , le )
Equality operators: == , != ( eq , ne )
Conditional operators:
If-then: (if) ? (then)
If-then-else: (if) ? (then) : (else)
Default: (value) ?: (defaultvalue)
Special tokens:
No-Operation: _
Expression Basic Objects
#ctx : the context object.
#vars: the context variables.
#locale : the context locale.
#request : (only in Web Contexts) the HttpServletRequest object.
#response : (only in Web Contexts) the HttpServletResponse object.
#session : (only in Web Contexts) the HttpSession object.
#servletContext : (only in Web Contexts) the ServletContext object.
Expression Utility Objects
#execInfo : information about the template being processed.
#messages : methods for obtaining externalized messages inside variables expressions, in the same way as they would be obtained using #{…} syntax.
#uris : methods for escaping parts of URLs/URIs
#conversions : methods for executing the configured conversion service (if any).
#dates : methods for java.util.Date objects: formatting, component extraction, etc.
#calendars : analogous to #dates , but for java.util.Calendar objects.
#numbers : methods for formatting numeric objects.
#strings : methods for String objects: contains, startsWith, prepending/appending, etc.
#objects : methods for objects in general.
#bools : methods for boolean evaluation.
#arrays : methods for arrays.
#lists : methods for lists.
#sets : methods for sets.
#maps : methods for maps.
#aggregates : methods for creating aggregates on arrays or collections.
#ids : methods for dealing with id attributes that might be repeated (for example, as a result of an iteration).
'프로그래밍 > javascript' 카테고리의 다른 글
postman Pre-request script (0) | 2022.10.24 |
---|---|
Vue.js 환경설정 (0) | 2021.12.09 |
node.js를 이용한 서버 만들기 (0) | 2021.10.08 |
타임리프 (Thymeleaf) 정리 (2) (0) | 2021.10.07 |
JSON (JavaScript Object Notation) 정리 (0) | 2021.10.06 |