* application.properties 의 변수 접근 방법
${@environment.getProperty('browser.title')}
<title th:text="${@environment.getProperty('browser.title')}"></title>
* 문자열 비교
<dd th:text="${tidList.payName}? '제로페이':'서울페이'"></dd>
* 년도 선택
<select id="searchFromYear" name="searchFromYear" class="select2 form-control" th:with="start=2022, last=${#dates.year(#dates.createNow())}">
<option th:each="i: ${ #numbers.sequence( start,last+1)}" th:value="${i}" th:text="${i}" th:selected="${i} == ${start}"></option>
</select>
* switch 사용예
<th:block th:switch="${EDIT_MODE}">
<button type="button"th:case="${T(com.shinhanpg.admin.backoffice.common.constants.GlobalConstants).MODE_INS}" >등록</button>
<button type="button" th:case="${T(com.shinhanpg.admin.backoffice.common.constants.GlobalConstants).MODE_UPD}" >수정</button>
</th:block>
* include fragment
// 호출 html
<th:block th:replace="client/clientMgmtFeeAfdpst :: FeeAfdpst"></th:block>
// clientMgmtFeeAfdpst.html
<th:block th:fragment="FeeAfdpst"></th:block>
* 매뉴얼
https://www.thymeleaf.org/apidocs/thymeleaf/2.1.6.RELEASE/org/thymeleaf/expression/Numbers.html