Question

The same question Use message bundle in Java class with Seam but what when you need use a parametric property like:

message.property = Some message with {0} this parameter.

How should I use the map for doing that?

Thanks.

Was it helpful?

Solution 2

This was my solution

@In
private Map<String, String> messages;
String property = messages.get("property.key");
MessageFormat.format(property, params);

Thx https://stackoverflow.com/users/115541/mac.

OTHER TIPS

Inject the StatusMessages component, and call one of the addFromResourceBundle methods. You might need to change {0} to #0; I'm not sure if the Seam components make use of the MessageFormat syntax. Also, these messages can use EL and Seam components directly: #{myComponent.property}, and then you don't have to pass anything else.

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