I'm using the mongodb-customer-service-data examples (available at https://github.com/SpringSource/spring-data-document-examples).
The example uses @RelatedDocument to associate domain objects across databases. It allows storing and updating objects well enough.
However, I want to do a Query that has Criteria against both the JPA database (in the example HSQLDB) and MongoDB.
Is this even possible? Is there any example anywhere that proves that it is possible?
Comments not directly related to the issue:
My use case is that our application is an Oracle DB, but we are now starting to receive semi-structured data. The JPA Entities are filterable by a user within certain constraints, but we'd like to expand this capability to the semi-structured data.
There also seems to be competing technologies QueryDSL and EclipseLink, but I can't find anything about doing queries across databases.
In JPA, it doesn't appear to be possible to do cross database queries because there are different PersistanceUnits that are associated with each database. However, mongodb cross-store seems to negate this particular problem.