The struts-config_1_2.dtd indicates that one can have a custom class that
extends FormPropertyConfig for getting properties. However it looks like one
add custom attributes to the tag that is used to indicate form properties
however
<form-property xPath="zzz" className="CustomPropertyConfig" name="yyy" type="java.lang.String" />
class CustomPropertyConfig {
private
String xPath;
public String getXPath() { return xPath; }
public void setXPath(String s) { xPath = s; }
}
However getXPath() always returns null. So is there a way to add custom
atributes to this tag which
struts will recognize. Currently it silently ignores (Struts 1.2).