Reputation: 3
I am developing a multi-language web app using Spring-boot. I have to get the current language of the web UI. id=s there any help?
Upvotes: 0
Views: 689
Reputation: 1844
use for current language:
${#locale.language}
use for current country:
${#locale.country}
Upvotes: 2