• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Google AppEngine problem -- java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter

 
Ranch Hand
Posts: 113
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm putting this question in this forum because I'm not sure where else it would belong. If some admin decides to move this, no offense will be taken. I'm converting a Struts/Hibernate application over to Google App Engine. When I try to start up the front page of my application, I get the following error on my console. Can anyone help me with this? I'm using Eclipse Indigo, and I have asm-3.3.jar in my Java build path, and it's also in my WEB-INF/lib.

 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Just did a google search for "org.objectweb.asm.ClassWriter" and hit a bunch of reports of exactly this error!

Most of the answers seem to be some version of the following:

You have an incompatibility between the version of ASM required by Hibernate (asm-1.5.3.jar) and the one required by Spring.



Bill
 
Frank Serkland
Ranch Hand
Posts: 113
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I added an earlier version of the asm jar, and that solved the problem.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic