I have a properties xml file, example:
<properties>
<entry key="message.first">Hello</entry>
<entry key="message.second">Hi</entry>
</properties>
and I want get the value from properties file and check if value is exist on the jsp page.
Example:
if(message.first != null) {
action
}
I don't now how get value from properties file and use in if statment on jsp page.