I'm trying to iterate through a set of keys in a properties file, so that only the "message.pX" is output.
a.property=foo
message.p1=a
message.p2=b
message.p3=c
some.other.property=bar
I don't know how many properties with the prefix (message.p) will be in the file, so I want to display any that are present. I've already got a bean class using ResourceBundle that handles it and pulls in the correct bundle for the locale, but is there a standard tag like <fmt:message> that can handle this?