> I need to develop an app that will take data in one database and
> transform it and put it into another database.
>
> The databases are MongoDb storing JSon data.
> ...
> Anyone have any ideas for doing it any other way? The requirements:

You didn't say if this is a one-time "moving from one db to another"
kind of thing or an ongoing need. If one time, then just hack
something together and be done with it.

If this is going to be an ongoing need, maybe you should think about
integrating Mule ESB, Spring Integration, Apache Camel (which has a
Scala DSL for Kevin) or a similar ESB framework that abstracts out
some of the Json and Mongodb pieces and lets you focus on the
transformation that needs to occur.

I assume your goal is not to spend a lot of time on the annoying bits
at either end (getting data in, adapting it to an object you can
interact with, pushing data back out) but rather focus energies on the
important part (business logic/transformation) in the middle. This may
also be total overkill depending on the specifics of your project but
something to consider.

Wayne

-- 
You received this message because you are subscribed to the Google Groups "The 
Java Posse" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/javaposse?hl=en.

Reply via email to