Santhosh
Santhosh

Reputation: 534

Dependent JARS for producing RESTful JSON

I have written a RESTful service in java and want to produce json out of the get method. I was struggling with many no class def found error due to issues in jar versions or dependencies.

For example
Jackson error: java.lang.NoClassDefFoundError: com/fasterxml/jackson/core/Versioned

Caused by: java.lang.NoClassDefFoundError: com/fasterxml/jackson/databind/JsonMappingException$Reference

I have created a dynamic web project in eclipse and added the jars in classpath and Maven is not used here.

Any idea on the list of dependent jars ??

Upvotes: 0

Views: 97

Answers (1)

Santhosh
Santhosh

Reputation: 534

I have finally found the jar versions and dependencies

enter image description here

Upvotes: 1

Related Questions