Where to put keys(Struts)?

If I can't use resource files like ApplicationResources.properties and I need to set two keys:button.add=Add Recordbutton.delete=Delete RecordCan this be done in some other file, like in the JSP page or struts-config.xml?/Matt
[262 byte] By [javaExceptiona] at [2007-11-27 9:43:59]
# 1

You could always make a constant calss that contains those string values....

public final static String BUTTON_ADD = "Add";

public final static String BUTTON_CANCEL = "Cancel";

den2681a at 2007-7-12 23:50:07 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
I will try that, thanks./Matt
javaExceptiona at 2007-7-12 23:50:07 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...