I am having some problems trying to work with PostgreSQL and Hibernate, more specifically, the issue mentioned in the title. I\'ve been searching the net for a few hours now
I've just solved the same / similar problem by specifying the schema.
@Entity @Table(name = "mytable", schema="myschema") public class MyTable implements Serializable { ...