Search code examples
javaspringspring-bootlocalethymeleaf

Thymeleaf get current locale


How can I get current locale in thymeleaf template? Thymeleaf context is locale aware, so it would be weird to inject locale on every request, is there some variable I can request in a template?

<div th:text="${currentLocale}"></div>

Solution

  • Use the #locale expression:

    <div th:text="${#locale}"></div>