I have been facing this weird exception while trying to persist some values into a table using Hibernate in a Java application. However this exception occurs only for one parti
I have same issue with such configuration
@Entity @Table(name = "NOTIFICATION") public class Notification { ... }
issue was resolved for me when I moved table name from @Table to @Entity
@Entity(name = "NOTIFICATION") @Table public class Notification { ... }