I am trying to display the Indian currency format using SpringBoot + Thymeleaf. I have used the following code in HTML to display it
<td th:text="${#numbers.formatCurrency(revenueDetailsDto.getTotalCommissionablePremium())}"></td>
@Bean
public LocaleResolver localeResolver() {
SessionLocaleResolver slr = new SessionLocaleResolver();
slr.setDefaultLocale(new Locale("en", "IN"));
return slr;
}
This is showing strings as- Rs.1,599,176.00 .
However, I want results in Indian Numeric format like- Rs. 15,99,176.00 .
Any idea on how to achieve it?