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
# 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";