一旦某个 case 判断值为 true,剩余的 case 默认不执行,“*”表示默认的 case,前面的 case 都不匹配候,执行默认的 case. <h1>swith/case</h1><div th:switch="${sex1}"> <span th:case="1">男</span> <span th:case="0">女</span> <span th:case="*">没有性别</span></div>