I have a JPA project deployed on JBoss7 in Eclipse Luna (4.4.1).
I've defined a datasource in the server and referenced it in my persistence.xml file:
<jta-data-source>java:/testdb</jta-data-source>
I've created an entity bean from scratch and everything works great. But... is there any Eclipse tool, external plugin or else that connects to the database, reads the table and autogenerates such entities?
I managed to do that by using a local JDBC connection, but now I can't find a way to do that with a jta datasource.