So that class is not in your classpath. That is all it ever means, so even if you think you see a jar file that would have that class, it doesn't. There is nothing in your classpath including jars that contain that class, otherwise the jvm would have found it. Maybe you have two versions of it in your classpath, that might cause the exception, but highly unlikely.
But why do you need JaxB, in your pom you only are looking for Jackson json library, I don't see a dependency on JAXB classes, or are they now part of the JDK?
Anyway, it needs that class cause you have a bean defined as marshaller in your dispatcher servlet configuration Spring xml file (Which is what you didn't post)
Hi Mark..
i have posted the pom and error stack trace let me know if you want some thing else also.
I am not clear what you are saying.
the class is present in war and i am able to navigate to the class also..
i am trying to run this on tomcat from eclipse.
Are you using STS or vanilla eclipse? Check your tomcat deploy directory for the correct lib. It must not be there if you are seeing this error. Often times you can clean this directory and re-publish and that will sometimes fix the problem.