LoginSignup
9
9

More than 5 years have passed since last update.

Thymeleafでenumを参照する

Posted at
enum
package com.example;

public enum Months {
    JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, DECEMBER;
}

thymeleaf
<div th:if="${month == T(com.example.Months).JANUARY}">
    monthがJANUARYの場合に表示される
</div>

参考

9
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
9