Hi, I have some code in
servlet Locale locale = Locale.getDefault();
ResourceBundle bundle = PropertyResourceBundle.getBundle("i18n.WelcomeBundle",locale,ClassLoader.getSystemClassLoader());
System.out.println("Welcome output :"+bundle.getString("Welcome"));
}
Where should i put i18n.WelcomeBundle_en_US.properties file so that i do not get MissingResourceException.
Thanks in advance.