Is it possible to use hibernate annotations to manage an entity which is based on a view not a table? I wouldn't want anything persisted, just the data loaded.
(This is because my database is multilingual, so the data for any object (e.g. a product) is in two tables, the non language specific data (one row per product) and the language specific data (row per product per language). It would be nice to load a java object based on a view of these two tables which had all the data for a specific product, in the appropriate language where relevant).
Thanks!
|