how do I iterate through multiple properties in jsp
- by David
I'm trying to iterate through a properties file which contains a list of keys like:
message.p1
message.p2
message.p3
I don't know how many properties will be in the file, so I want to display any that are present. Is there a standard tag like <fmt:message> that can handle this, or do I need to write some jsp script to handle the loop?