I have a very large program that loops through about a thousand class strings and does Class.forName(. ..) on them. It is taking about 100+ milliseconds to execute forName(...) on the classes that have the annotation @XmlAccessorTyp e(XmlAccessType .NONE) and @XmlAttribute/@XmlElement tags on the class members. The classes that are not serializable to xml load in 0-5 milliseconds. I was wondering if any knew what that would be and if there is anyway to speed up the Class.forName(. ..) calls on these classes.
Thanks
Max
Thanks
Max
Comment