In OSGi environment, there may be cases where I don't have access to a class at a certain part of the application.
What I am trying to do is create a Spring-Data repository such that if a class is not available, it will fall back to storing the object as a Map rather than the original class, also keeping the "_class" field intact. This is for those classes that have an Object reference rather than a specific concrete class.
The intent is to keep the "import" list small especially since other parts of the application may not use the actual data directly, but because we are using Spring-Data all the classes need to be imported when doing a "read".
For example, given workflowInstance object that is stored in a collection, I set the work object to something like this.
workflowInstance.setWorkObject(
Map("_class" -> "non.existent.class", "value" -> 42)))
It should be stored in the database as:
{ "workObject" : {
"_class" : "non.existent.class",
"value" : 42
} }
And when I retrieve the data back using a repository defined as
interface WorkflowInstanceRepo<T> extends MongoRepository<WorkflowInstance<T>, String>
I should get the same data when I do
@Autowired
WorkflowInstanceRepo<Map<String,Object>> repo
repo.find(...)
I am guessing it has something to do with making my own DefaultMongoTypeMapper or MongoConverter but I can't find any definitive examples that show how to use them (include the XML configuration) to perform the above.