lakshmi
lakshmi

Reputation: 4969

Hibernate - component class not found

Does anyone know what this is all about:

component class not found

with Hibernate?

I got this error How can i solve this issue..?

Initial SessionFactory creation failed.org.hibernate.MappingException: component class not found: EventGeofenceId

Upvotes: 1

Views: 3777

Answers (2)

duffymo
duffymo

Reputation: 308743

Looks like you've referenced a class named EventGeofenceId somewhere in your configuration but didn't create the Java source.

Upvotes: 3

Robert Kovačević
Robert Kovačević

Reputation: 1408

You are probably missing some hibernate jars in classpath.

Upvotes: 1

Related Questions