ELK是什麼?用途在哪?
網頁
▼
2021/5/31
2021/5/30
Bootstrap 5 Layout Containers簡介
Bootstrap Containers為響應式頁面佈局(layout)容器,使用Bootstrap的grid排版時必須在container中使用。
2021/5/29
Thymeleaf th:styleappend 附加 CSS style
Thymeleaf模板頁面使用th:styleappend
在HTML標籤既有的style
屬性值額外附加其他CSS style。
2021/5/28
2021/5/26
Thymeleaf 行內表示式 Expression inlining
Thymeleaf 在模板頁面除了th:text
標籤屬性搭配${...}
帶入變數外,還可使用行內表示式[[...]]
或[(...)]
帶入變數。
2021/5/25
2021/5/24
Spring Boot Thymeleaf 使用th:with設定變數 set local variables
p>Spring Boot Thymeleaf 使用
th:with
設定所屬標籤的的變數。
2021/5/23
Thymeleaf 頁面片段 th:insert、th:replace、th:include 差別
Thymeleaf 插入頁面片段屬性th:insert
、th:replace
、th:include
差別如下。
Spring Boot Thymeleaf 選擇物件表示式(星號語法)*{...} expressions on selections (asterisk syntax)
Spring Boot Thymeleaf 星號語法*{...}
用法如下。
2021/5/22
Spring Boot Thymeleaf 使用th:[attrname]設定標籤指定屬性 setting element specific attribute
Thymeleaf使用th:[attrname]
設定html標籤的指定屬性。
2021/5/21
Spring Boot Thymeleaf 取代頁面片段 replace page fragment
Spring Boot Thymeleaf 模板使用th:replace
可用指定的頁面中的標籤取代。當多個頁面中有重複出現的部分時(例如logo、header、選單、導覽列,footer區塊)便能利用插入片段的方式來提高維護性,當共同部分需要修改時只要修改被插入的片段即可。
2021/5/20
2021/5/19
2021/5/17
2021/5/16
2021/5/15
2021/5/14
2021/5/12
2021/5/10
2021/5/6
2021 老舊專案程式碼更新到新專案步驟 migrate legacy old function code base to new project
從去年10月開始至今約半年都在進行搬移老舊程式碼到新的專案工作,記錄心得及注意事項。
2021/5/5
Spring Boot Test 整合測試資料庫存取交易回滾 integration test database access transaction rollback
Spring Boot Test 進行資料存取測試時,測試結束後回滾資料異動的方式如下。