Currently in my project using Spring Boot 2.5.12 and thymeleaf to render pages. I have setup Internationalization based on Baeldung guide (https://www.baeldung.com/spring-boot-internationalization) and currently have somes messages_xx.properties files. EN: 10kb, DE: 20kb, FR: 23kb, TW: 16kb
I am facing an issue that whenever it try to read the files whose size are larger 16kb, it always fall back to the EN one. I have tried to duplicate the EN file, rename it to DE and its size is 10kb and yes the system can read the DE file perfectly fine.
Tbh I'm kinda stuck now, if you guys have any suggestions or solutions please let me know, thank you.