前言
由於釘釘機器人發送Markdown消息 手機部不支持table格式顯示(pc端支持table格式顯示),打算使用thymeleaf顯示信息。因為thymeleaf是 Spring boot推薦的引擎模版,站在巨人的肩膀上!如果您有更好的推薦,先謝謝您!
什麼是thymeleaf
在官網中有這麼一條介紹:
Thymeleaf is a modern server-side Java temp
先看個例子,有一個IntegerPrinter類,裏面有一個printf方法打印一個integer類型的值。
public class Main {
public static void main(String[] args) {
IntegerPrinter integerPrinter = new IntegerPrinter(123);
integer