I have a web application that use Hibernate to make CRUD operations over a database. I got an error saying that the table is not mapped. See the Java files:
Error me
Ensure your have set the table name on the entity annotation too.
@Entity(name = "table_name") @Table(name = "table_name") public class TableName { }