skip to Main Content

Mysql – Unable to join two table JPA

I have two table and I try to join use column idsubscriber but show some error. Class Subscriber: @Entity @Table(name = "subscriber") @XmlRootElement @NamedQueries({ @NamedQuery(name = "Subscriber.findAll", query = "SELECT s FROM Subscriber s") , @NamedQuery(name = "Subscriber.findById", query =…

VIEW QUESTION

PostgreSQL’s JSONB data type with Hibernate: Error creating bean with name 'entityManagerFactory' defined in class path resource-Unable to load class

Now I learn about nested jsons and geojson and how to save them in PostgreSQL as JsonB directly in database and before starting. Inspiration source: https://thorben-janssen.com/persist-postgresqls-jsonb-data-type-hibernate/ Error I get when running the app: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory'…

VIEW QUESTION
Back To Top
Search