Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.