I have Java POJOs with @Table, @Id, @Column, etc. How do I verify the schema represented in the Java POJOs matches the schema in the DB?
I am using EclipseLink. I know about eclipselink.ddl-generation=create-or-extend-tables, but I would like to make sure the Java POJOs "schema" matches the DB before I enable this.