Unable to create JPA objects from HSQLDB

I am using OpenJPA and HSQLDB for my current project.

But I cannot generate JPA objects from HSQLDB, because the eclipse plugin does not give me a choice for selecting a schema.

Does anyone have any ideas about this? Or is there another way to generate objects in eclipse?

+3
source share
1 answer

I assume that you are using the “standard” JPA toolchain (JPT), as you did not specify otherwise.

First you need to define a connection (in Exlporer data source). You should be able to expand and see the actual tables you need to work with:

alt text

"JPA Facet", JPA Facet JPA: " " , "" ":

Screen shot of the JPA Facet property page

( , JPA Tools > Generate Entities from Tables...), : Dialog where you can select a different schema

!

+9

Source: https://habr.com/ru/post/1785628/


All Articles