well I face a small problem and I was wondering if anyone can help.
I want to use REST technology to connect to a database and retreieve data using java. I am new to REST stuff but I find it quite intriguing.
Still my database structure does not follow the simple @Table Annotation in JPA.
I have a central table let say "SHELL" which contains several fields one of each is called "ACCOUNT_ID".
I have break this table into several views depending on this field "ACCOUNT_ID" value.
for example say the "SHELL" table contains data..
SHELL FIELD ACCOUNT_ID blah1 0 blah2 1 blah3 2
I have created several views of the following format SHELL_n where n = value of account_id per case e.g.
SHELL_0 FIELD ACCOUNT_ID blah1 0
SHELL_1 FIELD ACCOUNT_ID blah2 1
SHELL_2 FIELD ACCOUNT_ID blah3 2
of course every view has different read priviledges.
So my question lies on how I can use JPA, REST and Jersey to create ONE simple pattern class in java to do that.
I know that for every view I can use a different class and define the @Table Annotation in the Entity class. But the views can be created dynamically and they are not standard. I also understood that @Table annotation can not take variables so I was wondering if there is another way. Maybe without @Table annotation at all. I dont know... I was hoping some of you out there knew.