hib:load error
Brought to you by:
sergek
The hib:load tag fails, with the error "cannot find getter for property class".
This appears to be because getClass() is defined in java.lang.Object, which conflicts
with the method names setClass() and getClass() needed for the "class" attribute.
A simple fix is to change the attribute from "class" to "className": hibtags.tld has to be changed,
as well as the getter and setter in LoadTag.java.
/**
* Specify the class that we use
*/
public void setClassName(String value) {
className = value;
}
public String getClassName() {
return className;
}