Question

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?

Was it helpful?

Solution

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.

OTHER TIPS

You can use the #{messagesFactory.messages.containsKey('key')} to check.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top