I'm using eclipseLink 2.5.1 and through persistence.xml i'm able to create tables in DB by using entity classes(Java classes annotated with @Entity), those classes are listed in persistence.xml.
Problem: All classes which are defined in persistence.xml are creating tables in Db but i need only some classes of them i.e., eclipseLink should ignore some classes not to generate tables. Is there any solution to stop auto generation of tables in DB?
NOTE: Not all classes only some classes i need to omit from creation of tables in DB.