thymeleaf中${}和 #{} 和 *{}的作用和意义
1.$符号取上下文中的变量:<input type="text" name="userName" th:value="${user.name}">2.#符号取thymeleaf工具中的方法、文字消息表达式:<p th:utext="#{home.welcome}">Welcome to our grocery store!</p>3