I have a resource file that will have some optional keys. If the optional resource key is not present, I set a default instead. It appears that there is no easy way to determine if a key exists in the resource bundle. So this is what I'm doing to get around it.
<fmt:message var="title" key="login.reg.signup.${signupForm.regfrom}.title" />
<c:if test='${fn:startsWith(title, "??")}'>
<fmt:message var="title" key="login.reg.signup.default.title" />
</c:if>
Is there a better way?
You could write your own JSP tag that does this, so you can then just do:
<my:message var="title" key="${form}.title" default="default.title"/>
The tag implementation could either be your current JSP syntax, or a Java class.
You can use the #{messagesFactory.messages.containsKey('key')}
to check.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With