一旦某个 case 判断值为 true,剩余的 case 默认不执行,“*”表示默认的 case,前面的 case 都不匹配候,执行默认的 case.

    1. <h1>swith/case</h1>
    2. <div th:switch="${sex1}">
    3. <span th:case="1"></span>
    4. <span th:case="0"></span>
    5. <span th:case="*">没有性别</span>
    6. </div>

    17.Thymeleaf的常见属性:th:switch/th:case - 图1