I am trying to create a utility class ReadPropertyUtil.java
for reading data from property file. While my class is located under a util directory , my sky
I have just realized that my error was caused in the naming convention of my property file. When i used xxxx.xxxx.properties i got the error:
java.util.MissingResourceException: Can't find bundle for base name 'property_file name', locale en_US
Changing it to something like xxx-xxxx.properties works like a charm. Hope i help someone!