Hi,
you are trying to use StringBuilder class in your servlet, and you've mentioned that you're using Weblogic as your server, weblogic comes with its own JDK check the version of the jdk used by weblogic as StringBuilder is part of JDK 1.5 not part of JDK 1.4, I think your weblogic is using JDK1.4 thats why you are getting the NoClassDefFoundError for StringBuilder class
You can check the API doc for StringBuilder its in java.lang package
Regards,
Rakesh
|